From 39860a86f861868e1971e898a97b66ad75b8523f Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Wed, 28 Jul 2004 15:25:59 +0000 Subject: [PATCH] - The 'fd_set' definition is no longer just a typedef based upon a nameless 'struct' definition. It can be referenced as 'struct fd_set', too. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14689 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/include/unistd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/include/unistd.h b/library/include/unistd.h index 85349bc..66c371d 100644 --- a/library/include/unistd.h +++ b/library/include/unistd.h @@ -1,5 +1,5 @@ /* - * $Id: unistd.h,v 1.1.1.1 2004-07-26 16:32:56 obarthel Exp $ + * $Id: unistd.h,v 1.2 2004-07-28 15:25:59 obarthel Exp $ * * :ts=4 * @@ -143,7 +143,7 @@ extern char * __getcwd(char * buffer,size_t buffer_size,const char *file,int lin #define FD_SETSIZE 256 #endif -typedef struct +typedef struct fd_set { unsigned long bits[(FD_SETSIZE + 31) / 32]; } fd_set;