aboutsummaryrefslogtreecommitdiffstats
path: root/file_cmds/ipcs/ipcs.c
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-05-23 11:48:06 -0400
committerCameron Katri <me@cameronkatri.com>2021-05-23 11:48:06 -0400
commit5daaae50763dba0e91d9f80d4b341ee413d22796 (patch)
tree76c83ace61356b96a16fe02d12298500d3a50bfb /file_cmds/ipcs/ipcs.c
parent2f78f13e1754166537df320ad3c06d139f4d8c73 (diff)
downloadapple_cmds-5daaae50763dba0e91d9f80d4b341ee413d22796.tar.gz
apple_cmds-5daaae50763dba0e91d9f80d4b341ee413d22796.tar.zst
apple_cmds-5daaae50763dba0e91d9f80d4b341ee413d22796.zip
file_cmds: Fix compilation for lower targets
Diffstat (limited to 'file_cmds/ipcs/ipcs.c')
-rw-r--r--file_cmds/ipcs/ipcs.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/file_cmds/ipcs/ipcs.c b/file_cmds/ipcs/ipcs.c
index 986b229..8ee4e0e 100644
--- a/file_cmds/ipcs/ipcs.c
+++ b/file_cmds/ipcs/ipcs.c
@@ -42,19 +42,19 @@
#include <unistd.h>
#include <sysexits.h>
-#include "sys/types.h"
+#include <sys/types.h>
#include <sys/ucred.h>
#include <sys/time.h>
#include <sys/proc.h>
#include <sys/param.h>
#include <sys/sysctl.h>
#include <errno.h>
-#include "sys/ipcs.h"
+#include <sys/ipcs.h>
#define KERNEL 1 /* To get new ipc_perm and __(sem|shm|msg)ds_new */
-#include "sys/ipc.h"
-#include "sys/sem_internal.h"
-#include "sys/shm_internal.h"
-#include "sys/msg.h"
+#include <sys/ipc.h>
+#include <sys/sem_internal.h>
+#include <sys/shm_internal.h>
+#include <sys/msg.h>
/* The following is a kludge, until the problem of multiple inclusions