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:
parent
61fac91166
commit
3596280063
13 changed files with 286 additions and 0 deletions
5
nt/inc/sys/dir.h
Normal file
5
nt/inc/sys/dir.h
Normal 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
5
nt/inc/sys/file.h
Normal 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
5
nt/inc/sys/ioctl.h
Normal 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
10
nt/inc/sys/param.h
Normal 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_ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue