diff options
author | tjr <tjr@FreeBSD.org> | 2003-01-03 23:16:55 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-01-03 23:16:55 +0000 |
commit | 5ba4caf3bc97ae9e6ae609a7e05a5123b2b6ea47 (patch) | |
tree | 07206cd2d653998812697c4fc6ec50dcc5ff9c2a /lib/libc | |
parent | 9a4b1f6baa82364bd1aad0f3042a3089416f91b8 (diff) | |
download | FreeBSD-src-5ba4caf3bc97ae9e6ae609a7e05a5123b2b6ea47.zip FreeBSD-src-5ba4caf3bc97ae9e6ae609a7e05a5123b2b6ea47.tar.gz |
Remove an unused variable, `sverrno', which has not been used since 1.11.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/exec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libc/gen/exec.c b/lib/libc/gen/exec.c index 99e3806..7f13e0a 100644 --- a/lib/libc/gen/exec.c +++ b/lib/libc/gen/exec.c @@ -110,7 +110,6 @@ int execlp(const char *name, const char *arg, ...) { va_list ap; - int sverrno; char **argv; int n; |