/********** Copyright 1990 Regents of the University of California. All rights reserved. Author: 1986 Wayne A. Christopher, U. C. Berkeley CAD Group **********/ /* * Standard definitions. This file serves as the header file for std.c and * wlist.c */ #ifndef _STD_H_ #define _STD_H_ #ifndef FILE /* XXX Bogus */ # include #endif /* FIXME: Split this file and adjust all callers to use new header files */ #if 0 #warning "Please use bool.h, wordlist.h or complex.h rather than cpstd.h" #endif #include "bool.h" #include "wordlist.h" #include "complex.h" /* Externs defined in std.c */ extern char *tildexpand(char *string); extern void printnum(char *buf, double num); extern int cp_numdgt; extern void fatal(void); extern void cp_printword(char *string, FILE *fp); #endif /* _STD_H_*/