Module Name: src Committed By: kre Date: Fri Dec 4 23:04:58 UTC 2020
Modified Files: src/include: unistd.h Log Message: Correct typo in previous. To generate a diff of this commit: cvs rdiff -u -r1.160 -r1.161 src/include/unistd.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/include/unistd.h diff -u src/include/unistd.h:1.160 src/include/unistd.h:1.161 --- src/include/unistd.h:1.160 Fri Dec 4 20:39:10 2020 +++ src/include/unistd.h Fri Dec 4 23:04:58 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: unistd.h,v 1.160 2020/12/04 20:39:10 christos Exp $ */ +/* $NetBSD: unistd.h,v 1.161 2020/12/04 23:04:58 kre Exp $ */ /*- * Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc. @@ -102,7 +102,7 @@ char *cuserid(char *); /* obsolete */ #endif /* __CUSERID_DECLARED */ int dup(int); int dup2(int, int); -int execl(const char *, const char *, ...) __null__sentinel; +int execl(const char *, const char *, ...) __null_sentinel; int execle(const char *, const char *, ...); int execlp(const char *, const char *, ...) __null_sentinel; int execv(const char *, char * const *);