common.h (237B)
1 #ifndef __COMMON_H__ 2 #define __COMMON_H__ 3 4 #define MIN(a, b) ((a) < (b) ? (a) : (b)) 5 6 void die(const char *fmt, ...); 7 int write_oneshot_str(const char *path, const char *text); 8 int write_oneshot_int(const char *path, int value); 9 10 #endif