DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

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

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T c

⟦3bcfabcbe⟧ TextFile

    Length: 733 (0x2dd)
    Types: TextFile
    Names: »casts.h«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦e7f64e0c0⟧ »EurOpenD3/mail/vmh.tar.Z« 
        └─⟦dcb95597f⟧ 
            └─⟦this⟧ »casts.h« 

TextFile

/*
 * this is a file to overcome the stupidity of llib-lc and other
 * things. It simply casts the arguments of the various functions
 * to what lint expects them to be. sick but necessary.
 *
 * $Author: deboor $ $Date: 86/02/16 23:00:51 $
 */
#define Ioctl(d, r, p)	ioctl ((int) (d), (int) (r), (char *) (p))
#define Fseek(f, o, p)	fseek ((FILE *)(f), (long) (o), (int) (p))
#define Bcopy(s, d, l)	bcopy ((char *) (s), (char *) (d), (int) (l))
#define Bzero(a, l)	bzero ((char *) (a), (int) (l))
#define Fchmod(f, m)	fchmod ((int) (f), (unsigned short) (m))
#define Setitimer(w, v, ov)	setitimer ((int) (w),\
				(struct itimerval *)(v), \
				(struct itimerval *)(ov))
#define Realloc(p, s)	realloc ((char *) (p), (unsigned) (s))