home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource5
/
315_01
/
msc_hdrs.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-05-16
|
520b
|
28 lines
/* msc_hdrs.h is the usual band of header files for microsoft c progs */
#ifndef MSC_HDRS_H
#define MSC_HDRS_H
#include <ctype.h>
#undef tolower /* don't let these be defined as macros */
#undef toupper
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <fcntl.h>
#include <types.h>
#include <stat.h>
#include <io.h>
#include <stdlib.h>
#include <conio.h>
#include <dos.h>
#include <time.h>
#include <process.h>
#include <memory.h>
#include <malloc.h>
#endif