DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦16088453c⟧ TextFile

    Length: 162 (0xa2)
    Types: TextFile
    Notes: UNIX file
    Names: »varargs.h«

Derivation

└─⟦bbefdb7d7⟧ Bits:30004157 SW95755I Green Hill C-386
└─⟦bbefdb7d7⟧ UNIX Filesystem
    └─ ⟦this⟧ »gc/new/usr/ghs/LIB/include/varargs.h« 

TextFile

typedef char *va_list;
#define va_dcl		int va_alist;
#define va_start(ap)	(ap) = (char *)(&va_alist)
#define va_arg(ap,mode)	*((mode *)(ap))++
#define va_end(ap)