dexedrine/dexedrine.h
Robert Morrison 0385ff1446
refactor: Use header file, and update makefile
- Move the definitions and includes to a header file.
- Modify the makefile to account for this
- add install to makefile
2023-12-30 17:52:38 +00:00

14 lines
278 B
C

#define _DEFAULT_SOURCE
#include <bsd/libutil.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <systemd/sd-bus.h>
#include <unistd.h>
#include <linux/limits.h>
void handleSigs(int sig);
#define _cleanup_(f) __attribute__((cleanup(f)))