diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1995-05-09 02:25:50 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1995-05-09 02:25:50 +0000 |
commit | 1270d847987f8ab314d78e9c8055211a821e2fff (patch) | |
tree | 2e0c0fa5c6bef4e98f00a91808808fea32768134 /nt/inc | |
parent | 3f363523fd37d1ac92c6a5b27e648059433e4767 (diff) | |
download | emacs-1270d847987f8ab314d78e9c8055211a821e2fff.tar.gz |
removed ^Ms
Diffstat (limited to 'nt/inc')
-rw-r--r-- | nt/inc/pwd.h | 36 | ||||
-rw-r--r-- | nt/inc/sys/file.h | 10 | ||||
-rw-r--r-- | nt/inc/sys/ioctl.h | 10 | ||||
-rw-r--r-- | nt/inc/sys/param.h | 20 |
4 files changed, 38 insertions, 38 deletions
diff --git a/nt/inc/pwd.h b/nt/inc/pwd.h index 2361d52248c..6202ccd1e75 100644 --- a/nt/inc/pwd.h +++ b/nt/inc/pwd.h @@ -1,18 +1,18 @@ -#ifndef _PWD_H_
-#define _PWD_H_
-/*
- * pwd.h doesn't exist on NT, so we put together our own.
- */
-
-struct passwd {
- char *pw_name;
- char *pw_passwd;
- int pw_uid;
- int pw_gid;
- int pw_quota;
- char *pw_gecos;
- char *pw_dir;
- char *pw_shell;
-};
-
-#endif /* _PWD_H_ */
+#ifndef _PWD_H_ +#define _PWD_H_ +/* + * pwd.h doesn't exist on NT, so we put together our own. + */ + +struct passwd { + char *pw_name; + char *pw_passwd; + int pw_uid; + int pw_gid; + int pw_quota; + char *pw_gecos; + char *pw_dir; + char *pw_shell; +}; + +#endif /* _PWD_H_ */ diff --git a/nt/inc/sys/file.h b/nt/inc/sys/file.h index 698dc7861c9..f84e2b34811 100644 --- a/nt/inc/sys/file.h +++ b/nt/inc/sys/file.h @@ -1,5 +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.
- */
+/* + * 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. + */ diff --git a/nt/inc/sys/ioctl.h b/nt/inc/sys/ioctl.h index 5294e1b5f85..dc0957873da 100644 --- a/nt/inc/sys/ioctl.h +++ b/nt/inc/sys/ioctl.h @@ -1,5 +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.
- */
+/* + * 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. + */ diff --git a/nt/inc/sys/param.h b/nt/inc/sys/param.h index b7f227405f4..397c5ffae66 100644 --- a/nt/inc/sys/param.h +++ b/nt/inc/sys/param.h @@ -1,10 +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_ */
+#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_ */ |