mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
- Moved the data declarations out of math_data.c, stat_data.c,
socket_data.c, dirent_data.c and stdio_data.c and into the code that initializes them. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14868 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: stdio_growfdtable.c,v 1.4 2005-03-04 09:07:09 obarthel Exp $
|
||||
* $Id: stdio_growfdtable.c,v 1.5 2005-03-09 10:48:59 obarthel Exp $
|
||||
*
|
||||
* :ts=4
|
||||
*
|
||||
@ -43,6 +43,12 @@
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
/* The file descriptor table. */
|
||||
struct fd ** __fd;
|
||||
int __num_fd;
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
int
|
||||
__grow_fd_table(int max_fd)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user