From 206b563a0ca5d2139f2ebacdc8eeca15bb0fb3ae Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 30 May 2002 12:08:10 +0000 Subject: Doh! A silly typo broke select... -Erik --- libc/sysdeps/linux/common/syscalls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps') diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index 0f0da975d..72b938c10 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -791,7 +791,7 @@ _syscall2(int, setgroups, size_t, size, const gid_t *, list); //#define __NR_select 82 #ifdef L_select //Used as a fallback if _newselect isn't available... -#ifndef _NR__newselect +#ifndef __NR__newselect #include extern int select(int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout); @@ -1274,7 +1274,7 @@ _syscall3(int, getdents, int, fd, char *, dirp, size_t, count); //#define __NR__newselect 142 #ifdef L__newselect //Used in preference to select when available... -#ifdef _NR__newselect +#ifdef __NR__newselect #include extern int _newselect(int n, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout); -- cgit v1.2.3