summaryrefslogtreecommitdiff
path: root/src/sysdeps/trynullispointer.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2019-09-20 19:55:29 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2019-09-20 19:55:29 +0000
commit03f37879ef167dba6f5944716c06da81902e436e (patch)
tree46a70f3d85f8de8a8a1b648a53754531b86198a6 /src/sysdeps/trynullispointer.c
parent90c1f3c1580d8e699c2788262a614a930a33e13e (diff)
downloadskalibs-03f37879ef167dba6f5944716c06da81902e436e.tar.xz
We're down to ONE rogue sysdep, boys. ONE.
Diffstat (limited to 'src/sysdeps/trynullispointer.c')
-rw-r--r--src/sysdeps/trynullispointer.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/sysdeps/trynullispointer.c b/src/sysdeps/trynullispointer.c
deleted file mode 100644
index cbb3340..0000000
--- a/src/sysdeps/trynullispointer.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* ISC license. */
-
-/* Explanation: http://www.openwall.com/lists/musl/2013/01/09/13 */
-
-#include <stddef.h>
-
-int main (void)
-{
- char s[1][1+(int)NULL] ;
- int i = 0 ;
- return sizeof s[i++], !i ;
-}