aboutsummaryrefslogtreecommitdiff
path: root/src/core/platform.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2016-12-22 23:40:01 -0800
committerGarrett D'Amore <garrett@damore.org>2016-12-22 23:40:01 -0800
commit236781a2c13feb96a6dd56f762b2df6fec1dfee5 (patch)
treef04211282c1e9e57e6dd9def60a11db1e4545906 /src/core/platform.c
parentbca0a27e2f4978a5a74748b07613c0e30014880c (diff)
downloadnng-236781a2c13feb96a6dd56f762b2df6fec1dfee5.tar.gz
nng-236781a2c13feb96a6dd56f762b2df6fec1dfee5.tar.bz2
nng-236781a2c13feb96a6dd56f762b2df6fec1dfee5.zip
More C99-ification. Also end the _t thing for types (ISO C rules).
Diffstat (limited to 'src/core/platform.c')
-rw-r--r--src/core/platform.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/core/platform.c b/src/core/platform.c
deleted file mode 100644
index 755dfe5e..00000000
--- a/src/core/platform.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Copyright 2016 Garrett D'Amore <garrett@damore.org>
- *
- * This software is supplied under the terms of the MIT License, a
- * copy of which should be located in the distribution where this
- * file was obtained (LICENSE.txt). A copy of the license may also be
- * found online at https://opensource.org/licenses/MIT.
- */
-
-/*
- * This file pulls in the correct platform implementation.
- */
-
-#include "core/nng_impl.h"
-
-#if 0
-#if defined(PLATFORM_POSIX)
-#include "platform/posix/posix_impl.h"
-#else
-#error "unknown platform"
-#endif
-#endif