1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- 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
This commit is contained in:
Olaf Barthel
2004-07-28 15:25:59 +00:00
parent e899a25944
commit 39860a86f8

View File

@ -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;