diff options
-rw-r--r-- | src/systemd/sd-rtnl.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/systemd/sd-rtnl.h b/src/systemd/sd-rtnl.h index 289f96b5b9..0066f54d58 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 |