diff options
author | rbuj <[email protected]> | 2020-07-06 20:30:31 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-07-13 14:47:30 +0200 |
commit | 01e8f8a09ab273719bdf0869f9f8693cb45d302e (patch) | |
tree | 524ba0099e8991a760dad9aa303adcb806ca811a /battstat/apmlib | |
parent | 31375efa710b751f4a64fab47309d6e35560befb (diff) | |
download | mate-applets-01e8f8a09ab273719bdf0869f9f8693cb45d302e.tar.bz2 mate-applets-01e8f8a09ab273719bdf0869f9f8693cb45d302e.tar.xz |
Guard block is missing
Diffstat (limited to 'battstat/apmlib')
-rw-r--r-- | battstat/apmlib/apm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/battstat/apmlib/apm.h b/battstat/apmlib/apm.h index c24041c2..fd1f6eb6 100644 --- a/battstat/apmlib/apm.h +++ b/battstat/apmlib/apm.h @@ -20,6 +20,9 @@ * $Id$ * */ +#ifndef __APM_H__ +#define __APM_H__ + #include <linux/apm_bios.h> #include <sys/types.h> @@ -75,3 +78,5 @@ extern const char *apm_time_nosec(time_t t); #ifdef APM_IOC_REJECT #define APM_REJECT_ENABLED #endif + +#endif /* __APM_H__ */ |