diff options
author | 2002-07-30 09:16:19 +0000 | |
---|---|---|
committer | 2002-07-30 09:16:19 +0000 | |
commit | 11c430852a963dd092b4e9d8120f1ec48e472408 (patch) | |
tree | 111de41cfd6f02dfa2753c2d54031abb36412595 | |
parent | 65335->65535 typo (diff) | |
download | wireguard-openbsd-11c430852a963dd092b4e9d8120f1ec48e472408.tar.xz wireguard-openbsd-11c430852a963dd092b4e9d8120f1ec48e472408.zip |
sync function decl and prototype (static-ness)
-rw-r--r-- | bin/systrace/openbsd-syscalls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/systrace/openbsd-syscalls.c b/bin/systrace/openbsd-syscalls.c index 42eda506892..71fd31a98e2 100644 --- a/bin/systrace/openbsd-syscalls.c +++ b/bin/systrace/openbsd-syscalls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: openbsd-syscalls.c,v 1.9 2002/07/22 04:02:39 provos Exp $ */ +/* $OpenBSD: openbsd-syscalls.c,v 1.10 2002/07/30 09:16:19 itojun Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -472,7 +472,7 @@ obsd_io(int fd, pid_t pid, int op, void *addr, u_char *buf, size_t size) return (0); } -char * +static char * obsd_getcwd(int fd, pid_t pid, char *buf, size_t size) { char *path; |