import newlib-2000-02-17 snapshot

This commit is contained in:
Christopher Faylor
2000-02-17 19:39:52 +00:00
parent 1fd5e000ac
commit 8a0efa53e4
1520 changed files with 282219 additions and 0 deletions

View File

@ -0,0 +1,13 @@
/*
* %G% (UofMD) %D%
*/
#define ATEXIT_SIZE 32 /* must be at least 32 to guarantee ANSI conformance */
struct atexit {
struct atexit *next; /* next in list */
int ind; /* next index in this table */
void (*fns[ATEXIT_SIZE])(); /* the table itself */
};
struct atexit *__atexit; /* points to head of LIFO stack */