代码搜索:CFront

找到约 1,009 项符合「CFront」的源代码

代码结果 1,009
www.eeworm.com/read/458360/7298594

h rand48.h

/* @(#) rand48.h 1.2 1/27/86 17:46:56 */ /*ident "@(#)cfront:incl/rand48.h 1.2"*/ extern double drand48 (), erand48 (unsigned short); extern long lrand48 (), nrand48 (unsign
www.eeworm.com/read/458360/7298595

h signal.h

/* @(#) signal.h 1.3 1/27/86 17:46:59 */ /*ident "@(#)cfront:incl/signal.h 1.3"*/ /* 3.0 SID # 1.3 */ #include typedef int (*PF) (); extern int (*sigset(int, PF))(); extern int (*ssign
www.eeworm.com/read/458360/7298596

h plot.h

/* @(#) plot.h 1.3 1/27/86 17:46:52 */ /*ident "@(#)cfront:incl/plot.h 1.3"*/ extern int arc (int, int, int, int, int, int), circle (int, int, int), closepl (), cont
www.eeworm.com/read/458360/7298609

h errno.h

/* @(#) errno.h 1.3 1/27/86 17:46:39 */ /*ident "@(#)cfront:incl/errno.h 1.3" */ /* * Error codes */ #include extern int errno;
www.eeworm.com/read/458360/7298610

h assert.h

/* @(#) assert.h 1.2 1/27/86 17:46:34 */ /*ident "@(#)cfront:incl/assert.h 1.2"*/ #ifdef NDEBUG #define assert(EX) #else extern void _assert(char*, char*, int); #define assert(EX) if (EX) ; else _asse
www.eeworm.com/read/310556/13649147

c generic.c

/* @(#) generic.c 1.2 1/27/86 17:47:45 */ /*ident "@(#)cfront:lib/generic/generic.c 1.2"*/ #include extern genericerror(int n, char* s) { fprintf(stderr,"%s\n",s?s:"error in generic librar
www.eeworm.com/read/310556/13649148

c _main.c

/* @(#) _main.c 1.2 1/27/86 17:47:56 */ /*ident "@(#)cfront:lib/static/_main.c 1.2"*/ extern void _main() { typedef void (*PFV)(); extern PFV _ctors[]; for (PFV* pf=_ctors; *pf; pf++) (**pf)(); }
www.eeworm.com/read/310556/13649149

c exit.c

/* @(#) exit.c 1.4 1/27/86 17:47:57 */ /*ident "@(#)cfront:lib/static/exit.c 1.4"*/ extern void _exit(int); extern void _cleanup(); extern void dtors(); extern void exit(int i) { dtors(); _cleanup
www.eeworm.com/read/310556/13649150

c dtors.c

/* @(#) dtors.c 1.1 1/27/86 17:47:57 */ /*ident "@(#)cfront:lib/static/dtors.c 1.1"*/ typedef void (*PFV)(); void dtors() { extern PFV _dtors[]; static ddone; if (ddone == 0) { // once only ddo
www.eeworm.com/read/310556/13649151

c _dtor.c

/* @(#) _dtor.c 1.2 1/27/86 17:47:55 */ /*ident "@(#)cfront:lib/static/_dtor.c 1.2"*/ typedef void (*PFV)(); extern PFV _dtors[] = { 0 };