diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2006-12-20 08:12:01 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2006-12-20 08:12:01 +0000 |
commit | e39bfcdfda70ab5d7cf014e674974303bd1a4e0a (patch) | |
tree | 164b0f95b3247db08d802feaeb2424c2cbc8de3e | |
parent | 3f6ca397551f63c9756860b819317f1e83d0b38b (diff) |
zap bogus sentinel, as noticed by dasn.
okay theo
-rw-r--r-- | include/unistd.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/unistd.h b/include/unistd.h index 9deeca3b762..b093a5a7215 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: unistd.h,v 1.58 2006/08/28 15:47:28 espie Exp $ */ +/* $OpenBSD: unistd.h,v 1.59 2006/12/20 08:12:00 espie Exp $ */ /* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */ /*- @@ -69,8 +69,7 @@ int dup(int); int dup2(int, int); int execl(const char *, const char *, ...) __attribute__((sentinel)); -int execle(const char *, const char *, ...) - __attribute__((sentinel)); +int execle(const char *, const char *, ...); int execlp(const char *, const char *, ...) __attribute__((sentinel)); int execv(const char *, char * const *); |