Merge branch 'vendor/GCC50'
[dragonfly.git] / lib / libc / gen / sysvipc.c
1 #include <namespace.h>
2 #include <string.h>
3 #include <stdlib.h>
4 #include <un-namespace.h>
5
6 static void sysvipc_init(void) __attribute__ ((constructor));
7
8 char sysvipc_userland = 0;
9
10 static void
11 sysvipc_init(void)
12 {
13         if (getenv("USR_SYSVIPC") != NULL)
14                 sysvipc_userland = 1;
15 }