]> sigrok.org Git - libserialport.git/commitdiff
Add missing #include guards.
authorUwe Hermann <redacted>
Fri, 22 Nov 2013 10:59:12 +0000 (11:59 +0100)
committerUwe Hermann <redacted>
Fri, 22 Nov 2013 10:59:12 +0000 (11:59 +0100)
libserialport.h.in
linux_termios.h

index e4109a985f96d587f33e9b99fba6a6a33b2c48dc..85fd098300a9d441b4590622706155a0e60816ea 100644 (file)
@@ -64,8 +64,8 @@
  * or where otherwise documented a positive value.
  */
 
-#ifndef LIBSERIALPORT_H
-#define LIBSERIALPORT_H
+#ifndef LIBSERIALPORT_LIBSERIALPORT_H
+#define LIBSERIALPORT_LIBSERIALPORT_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -630,4 +630,4 @@ void sp_free_error_message(char *message);
 }
 #endif
 
-#endif /* LIBSERIALPORT_H */
+#endif
index 1e1c7d7b53d15ca09be8f23b6ecc15e4bd68d716..cb2ed9d37e03734bc2b3d41c99f1865a636259c4 100644 (file)
@@ -17,6 +17,9 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#ifndef LIBSERIALPORT_LINUX_TERMIOS_H
+#define LIBSERIALPORT_LINUX_TERMIOS_H
+
 #define RTS_FLOW 1
 #define CTS_FLOW 2
 #define DTR_FLOW 4
@@ -30,3 +33,5 @@ void set_termios_speed(void *data, int speed);
 int get_termiox_size(void);
 int get_termiox_flow(void *data);
 void set_termiox_flow(void *data, int flags);
+
+#endif