代码搜索:CFront
找到约 1,009 项符合「CFront」的源代码
代码结果 1,009
www.eeworm.com/read/458360/7298559
h cfront.h
/* @(#) cfront.h 1.4 1/27/86 17:48:33 */
/*ident "@(#)cfront:src/cfront.h 1.4" */
/***********************************************************************
C++ source for cfront, the C++ compiler fr
www.eeworm.com/read/310556/13649234
h cfront.h
/* @(#) cfront.h 1.4 1/27/86 17:48:33 */
/*ident "@(#)cfront:src/cfront.h 1.4" */
/***********************************************************************
C++ source for cfront, the C++ compiler fr
www.eeworm.com/read/229812/4742166
txt cfront.txt
Features not implement in cfront 3.x
====================================
Support for the `volatile' keyword.
Support for the `signed' keyword.
Support for wide character literals.
Suppor
www.eeworm.com/read/458360/7298472
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/458360/7298473
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/458360/7298474
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/458360/7298475
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/458360/7298476
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 };
www.eeworm.com/read/458360/7298478
c _ctor.c
/* @(#) _ctor.c 1.2 1/27/86 17:47:54 */
/*ident "@(#)cfront:lib/static/_ctor.c 1.2"*/
typedef void (*PFV)();
extern PFV _ctors[] = { 0 };