OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [stdlib/] [atexit.h] - Blame information for rev 1773

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1010 ivang
/*
2
 *      %G% (UofMD) %D%
3
 */
4
 
5
#define ATEXIT_SIZE 32  /* must be at least 32 to guarantee ANSI conformance */
6
 
7
struct atexit {
8
        struct  atexit *next;           /* next in list */
9
        int     ind;                    /* next index in this table */
10
        void    (*fns[ATEXIT_SIZE])();  /* the table itself */
11
};
12
 
13
struct atexit *__atexit;        /* points to head of LIFO stack */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.