]> sigrok.org Git - libserialport.git/commitdiff
libserialport_internal.h: Add #include guard.
authorUwe Hermann <redacted>
Wed, 25 Mar 2015 19:29:41 +0000 (20:29 +0100)
committerUwe Hermann <redacted>
Thu, 26 Mar 2015 22:57:56 +0000 (23:57 +0100)
libserialport_internal.h

index 9d8e41fe3cf7fe8402310c0173060c1c04ac00ab..08e4eb2094cce65fe9820d2f87673c931b0f5f9d 100644 (file)
@@ -18,6 +18,9 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#ifndef LIBSERIALPORT_LIBSERIALPORT_INTERNAL_H
+#define LIBSERIALPORT_LIBSERIALPORT_INTERNAL_H
+
 #include "config.h"
 
 #ifdef __linux__
@@ -229,3 +232,5 @@ SP_PRIV struct sp_port **list_append(struct sp_port **list, const char *portname
 /* OS-specific Helper functions. */
 SP_PRIV enum sp_return get_port_details(struct sp_port *port);
 SP_PRIV enum sp_return list_ports(struct sp_port ***list);
+
+#endif