libserialport_internal.h: Add #include guard.

This commit is contained in:
Uwe Hermann 2015-03-25 20:29:41 +01:00
parent cfa5af67fd
commit 2b40f81454
1 changed files with 5 additions and 0 deletions

View 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