diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/systemd/sd-shutdown.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/systemd/sd-shutdown.h b/src/systemd/sd-shutdown.h index 6698c8c5c4..1d65549882 100644 --- a/src/systemd/sd-shutdown.h +++ b/src/systemd/sd-shutdown.h @@ -26,7 +26,13 @@ #include <inttypes.h> -#include "_sd-common.h" +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef _sd_packed_ +# define _sd_packed_ __attribute__((packed)) +#endif typedef enum sd_shutdown_mode { SD_SHUTDOWN_NONE = 0, @@ -107,4 +113,8 @@ struct sd_shutdown_command { * anybody. */ +#ifdef __cplusplus +} +#endif + #endif |