From 5cea56c8751352c24127f1a9313ef7f9cfce88ed Mon Sep 17 00:00:00 2001 From: kre Date: Fri, 4 Dec 2020 23:04:58 +0000 Subject: [PATCH] Correct typo in previous. --- include/unistd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/unistd.h b/include/unistd.h index e352d0651f39..bcafcc14ac5c 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -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 *);