summaryrefslogtreecommitdiffstats
path: root/sys/amd64/linux32/syscalls.master
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2012-05-25 21:50:48 +0000
committered <ed@FreeBSD.org>2012-05-25 21:50:48 +0000
commit55e4d6365d0ddc35087b37d263d2832e05b8f45f (patch)
tree9be39bf236101d3e9881764ddb50f0ae099c5219 /sys/amd64/linux32/syscalls.master
parentc4e990d23d413f1b86e4376a2b83db7a282495ad (diff)
downloadFreeBSD-src-55e4d6365d0ddc35087b37d263d2832e05b8f45f.zip
FreeBSD-src-55e4d6365d0ddc35087b37d263d2832e05b8f45f.tar.gz
Remove use of non-ISO-C integer types from system call tables.
These files already use ISO-C-style integer types, so make them less inconsistent by preferring the standard types.
Diffstat (limited to 'sys/amd64/linux32/syscalls.master')
-rw-r--r--sys/amd64/linux32/syscalls.master4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master
index a71e02d..c3a10af 100644
--- a/sys/amd64/linux32/syscalls.master
+++ b/sys/amd64/linux32/syscalls.master
@@ -54,8 +54,8 @@
l_int mode); }
9 AUE_LINK STD { int linux_link(char *path, char *to); }
10 AUE_UNLINK STD { int linux_unlink(char *path); }
-11 AUE_EXECVE STD { int linux_execve(char *path, u_int32_t *argp, \
- u_int32_t *envp); }
+11 AUE_EXECVE STD { int linux_execve(char *path, uint32_t *argp, \
+ uint32_t *envp); }
12 AUE_CHDIR STD { int linux_chdir(char *path); }
13 AUE_NULL STD { int linux_time(l_time_t *tm); }
14 AUE_MKNOD STD { int linux_mknod(char *path, l_int mode, \
OpenPOWER on IntegriCloud