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.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/platform.h b/src/include/platform.h
index 6a3e8e4b8..e12d08e44 100644
--- a/src/include/platform.h
+++ b/src/include/platform.h
@@ -16,7 +16,7 @@
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19*/ 19 */
20 20
21/** 21/**
22 * @author Nils Durner 22 * @author Nils Durner
@@ -39,7 +39,7 @@
39#endif 39#endif
40 40
41#ifdef WINDOWS 41#ifdef WINDOWS
42#define BREAKPOINT asm("int $3;"); 42#define BREAKPOINT asm ("int $3;");
43#define GNUNET_SIGCHLD 17 43#define GNUNET_SIGCHLD 17
44#else 44#else
45#define BREAKPOINT 45#define BREAKPOINT
@@ -223,11 +223,11 @@
223/** 223/**
224 * GNU gettext support macro. 224 * GNU gettext support macro.
225 */ 225 */
226#define _(String) dgettext(PACKAGE,String) 226#define _(String) dgettext(PACKAGE, String)
227#define LIBEXTRACTOR_GETTEXT_DOMAIN "libextractor" 227#define LIBEXTRACTOR_GETTEXT_DOMAIN "libextractor"
228#else 228#else
229#include "libintlemu.h" 229#include "libintlemu.h"
230#define _(String) dgettext("org.gnunet.gnunet",String) 230#define _(String) dgettext("org.gnunet.gnunet", String)
231#define LIBEXTRACTOR_GETTEXT_DOMAIN "org.gnunet.libextractor" 231#define LIBEXTRACTOR_GETTEXT_DOMAIN "org.gnunet.libextractor"
232#endif 232#endif
233 233
@@ -249,7 +249,7 @@
249#ifdef DARWIN 249#ifdef DARWIN
250#define __BYTE_ORDER BYTE_ORDER 250#define __BYTE_ORDER BYTE_ORDER
251#define __BIG_ENDIAN BIG_ENDIAN 251#define __BIG_ENDIAN BIG_ENDIAN
252 /* not available on darwin, override configure */ 252/* not available on darwin, override configure */
253#undef HAVE_STAT64 253#undef HAVE_STAT64
254#undef HAVE_MREMAP 254#undef HAVE_MREMAP
255#endif 255#endif
@@ -257,7 +257,7 @@
257 257
258#if !HAVE_ATOLL 258#if !HAVE_ATOLL
259long long 259long long
260atoll (const char *nptr); 260atoll(const char *nptr);
261#endif 261#endif
262 262
263#if ENABLE_NLS 263#if ENABLE_NLS