1
0
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:
Olaf Barthel
2005-03-09 10:48:59 +00:00
parent 0fad53e56e
commit cc8a8e42c0
15 changed files with 147 additions and 346 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: socket_init_exit.c,v 1.13 2005-03-05 17:55:26 obarthel Exp $
* $Id: socket_init_exit.c,v 1.14 2005-03-09 10:48:59 obarthel Exp $
*
* :ts=4
*
@ -78,6 +78,20 @@ struct DaemonMessage
/****************************************************************************/
struct Library * __SocketBase;
/****************************************************************************/
#if defined(__amigaos4__)
struct SocketIFace *__ISocket;
#endif /* __amigaos4__ */
/****************************************************************************/
int h_errno;
/****************************************************************************/
CLIB_DESTRUCTOR(__socket_exit)
{
ENTER();