added C++ header guards

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1655 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
beveloper
2002-10-25 15:13:00 +00:00
parent 37514a9358
commit 15750026e0
4 changed files with 34 additions and 6 deletions
+9 -1
View File
@@ -5,7 +5,11 @@
#ifndef OBOS_IF_DL_H
#define OBOS_IF_DL_H
#include "net/if.h"
#include <net/if.h>
#ifdef __cplusplus
extern "C" {
#endif
/* link level sockaddr structure */
struct sockaddr_dl {
@@ -26,5 +30,9 @@ struct sockaddr_dl {
void link_addr (const char *, struct sockaddr_dl *);
char *link_ntoa (const struct sockaddr_dl *);
#ifdef __cplusplus
}
#endif
#endif /* OBOS_IF_DL_H */