aboutsummaryrefslogtreecommitdiff
path: root/src/include/platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/platform.h')
-rw-r--r--src/include/platform.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/include/platform.h b/src/include/platform.h
index 060ab5b..9f72f57 100644
--- a/src/include/platform.h
+++ b/src/include/platform.h
@@ -29,10 +29,10 @@
29#include "config.h" 29#include "config.h"
30#ifndef FRAMEWORK_BUILD 30#ifndef FRAMEWORK_BUILD
31#include "gettext.h" 31#include "gettext.h"
32#define _(a) dgettext(PACKAGE, a) 32#define _(a) dgettext (PACKAGE, a)
33#else 33#else
34#include "libintlemu.h" 34#include "libintlemu.h"
35#define _(a) dgettext("org.gnunet.libextractor", a) 35#define _(a) dgettext ("org.gnunet.libextractor", a)
36#endif 36#endif
37 37
38#include "plibc.h" 38#include "plibc.h"
@@ -67,7 +67,7 @@
67#include <langinfo.h> 67#include <langinfo.h>
68 68
69#ifndef SIZE_MAX 69#ifndef SIZE_MAX
70#define SIZE_MAX ((size_t)-1) 70#define SIZE_MAX ((size_t) -1)
71#endif 71#endif
72 72
73#if DARWIN 73#if DARWIN
@@ -75,12 +75,11 @@
75#include <mach-o/ldsyms.h> 75#include <mach-o/ldsyms.h>
76#endif 76#endif
77 77
78#if !WINDOWS 78#if ! WINDOWS
79#define ABORT() abort() 79#define ABORT() abort ()
80#else 80#else
81#define ABORT() DebugBreak () 81#define ABORT() DebugBreak ()
82#endif 82#endif
83 83
84 84
85
86#endif 85#endif