summaryrefslogtreecommitdiff
path: root/sys/kern/makesyscalls.sh
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 23:44:38 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 23:44:38 +0000
commit6367b7dbdab43a553a96aba5f705199e58ab1677 (patch)
treeea958316eb0adb99df5366e5dd2ff93ae7830654 /sys/kern/makesyscalls.sh
parent6b60303818e70ff9cce6beb1163bff8caa79f343 (diff)
Don't put a tab between a function and its arguments
Diffstat (limited to 'sys/kern/makesyscalls.sh')
-rw-r--r--sys/kern/makesyscalls.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh
index 97a72978fce..e641fe5df65 100644
--- a/sys/kern/makesyscalls.sh
+++ b/sys/kern/makesyscalls.sh
@@ -1,5 +1,5 @@
#! /bin/sh -
-# $OpenBSD: makesyscalls.sh,v 1.9 2002/03/14 01:27:04 millert Exp $
+# $OpenBSD: makesyscalls.sh,v 1.10 2002/03/14 23:44:37 millert Exp $
# $NetBSD: makesyscalls.sh,v 1.26 1998/01/09 06:17:51 thorpej Exp $
#
# Copyright (c) 1994,1996 Christopher G. Demetriou
@@ -350,10 +350,10 @@ function putent(nodefs, compatwrap) {
if (nodefs != "INDIR") {
prototype = "(struct proc *, void *, register_t *)"
if (compatwrap == "")
- printf("int\t%s\t%s;\n", funcname,
+ printf("int\t%s%s;\n", funcname,
prototype) > sysprotos
else
- printf("int\t%s_%s\t%s;\n", compatwrap, funcname,
+ printf("int\t%s_%s%s;\n", compatwrap, funcname,
prototype) > sysprotos
}