1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 18:40:39 -08:00

Initial revision

This commit is contained in:
Karl Heuer 1995-04-12 04:48:18 +00:00
parent 61fac91166
commit 3596280063
13 changed files with 286 additions and 0 deletions

5
nt/inc/sys/dir.h Normal file
View file

@ -0,0 +1,5 @@
/*
* map sys\dir.h to ..\..\..\src\ndir.h
*/
#include "..\..\..\src\ndir.h"

5
nt/inc/sys/file.h Normal file
View file

@ -0,0 +1,5 @@
/*
* sys\file.h doesn't exist on NT...rather than including it conditionally
* in some of the source files, we just extend the include path so that the
* compiler will pick up this empty header instead.
*/

5
nt/inc/sys/ioctl.h Normal file
View file

@ -0,0 +1,5 @@
/*
* sys\ioctl.h doesn't exist on NT...rather than including it conditionally
* in many of the source files, we just extend the include path so that the
* compiler will pick this up empty header instead.
*/

10
nt/inc/sys/param.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef _PARAM_H_
#define _PARAM_H_
/*
* sys\param.h doesn't exist on NT, so we'll make one.
*/
#define NBPG 4096
#endif /* _PARAM_H_ */