summaryrefslogtreecommitdiff
path: root/src/usuals.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/usuals.h')
-rw-r--r--src/usuals.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/usuals.h b/src/usuals.h
index 038e8f9..f429d5b 100644
--- a/src/usuals.h
+++ b/src/usuals.h
@@ -23,9 +23,9 @@
#include <sys/types.h>
#ifdef _WIN32
- #include <../config.win32.h>
+ #include "config.win32.h"
#else
- #include <../config.h>
+ #include "config.h"
#endif
#ifdef HAVE_IO_H
@@ -72,4 +72,10 @@
#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif
+#ifdef _WIN32
+ #define UL(x) x
+#else
+ #define UL(x) x#LL
+#endif
+
#endif /* __USUALS_H__ */