diff options
author | Thomas Voss <mail@thomasvoss.com> | 2022-11-17 12:36:12 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2022-11-17 12:36:12 +0100 |
commit | 5eece7e783e177e6fcf7ed4a7185d180f9fc5565 (patch) | |
tree | 20c2c866c9fbf14e23ceb6d204d6264d8c33552c /src/lux.h | |
parent | 63ad1fe1902222d923ba407ce891974df9ccdd0b (diff) |
Use LIBLUX_ as a macro prefix
Diffstat (limited to 'src/lux.h')
-rw-r--r-- | src/lux.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -15,12 +15,12 @@ * PERFORMANCE OF THIS SOFTWARE. */ -#ifndef LUX_H -#define LUX_H +#ifndef LIBLUX_LUX_H +#define LIBLUX_LUX_H #include <stdio.h> -#define LUX_BACKLIGHT_DIR "/sys/class/backlight" +#define LIBLUX_BACKLIGHT_DIR "/sys/class/backlight" #ifdef O_PATH #define LUX_GDIR_FLAGS O_PATH #else @@ -54,4 +54,4 @@ double luxdecp(lux_t *, double); } #endif -#endif /* !LUX_H */ +#endif /* !LIBLUX_LUX_H */ |