freebsd-dev/contrib/hostapd/defs.h
2005-06-05 22:35:03 +00:00

15 lines
226 B
C

#ifndef DEFS_H
#define DEFS_H
#ifdef CONFIG_NATIVE_WINDOWS
#ifdef FALSE
#undef FALSE
#endif
#ifdef TRUE
#undef TRUE
#endif
#endif /* CONFIG_NATIVE_WINDOWS */
typedef enum { FALSE = 0, TRUE = 1 } Boolean;
#endif /* DEFS_H */