summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-11-07 03:40:43 +0100
committerLennart Poettering <lennart@poettering.net>2013-11-07 03:40:43 +0100
commit0a0a68282c3f9d3148dd924e1378c448a9a92028 (patch)
treef6d4ea3e3ebcf476f3e61a98a81fcb5c2e379eb4 /src
parenta33dece5f8cce7f1946263bec76068ef84abc07b (diff)
rtnl: headers in src/systemd/ may not use #pragma once
Diffstat (limited to 'src')
-rw-r--r--src/systemd/sd-rtnl.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/systemd/sd-rtnl.h b/src/systemd/sd-rtnl.h
index 289f96b5b..0066f54d5 100644
--- a/src/systemd/sd-rtnl.h
+++ b/src/systemd/sd-rtnl.h
@@ -1,5 +1,8 @@
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
+#ifndef foosdrtnlhfoo
+#define foosdrtnlhfoo
+
/***
This file is part of systemd.
@@ -19,8 +22,6 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
-#pragma once
-
#include <inttypes.h>
typedef struct sd_rtnl sd_rtnl;
@@ -51,3 +52,5 @@ sd_rtnl_message *sd_rtnl_message_unref(sd_rtnl_message *m);
int sd_rtnl_message_get_type(sd_rtnl_message *m, uint16_t *type);
int sd_rtnl_message_append(sd_rtnl_message *m, unsigned short type, const void *data);
int sd_rtnl_message_read(sd_rtnl_message *m, unsigned short *type, void **data);
+
+#endif