summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1997-06-28 03:29:52 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1997-06-28 03:29:52 +0000
commitbc45c90a94a103eb346bd16c35a3c072036285b5 (patch)
tree2682338496e6430e148d137f443859922b2afc66 /gnu
parenta40e1eadbee522fc37e538b4841e9cae8f281045 (diff)
Latest version from Cyclic Software
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/cvs/emx/config.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/gnu/usr.bin/cvs/emx/config.h b/gnu/usr.bin/cvs/emx/config.h
index 380e73e4e19..f9ec55f7672 100644
--- a/gnu/usr.bin/cvs/emx/config.h
+++ b/gnu/usr.bin/cvs/emx/config.h
@@ -257,6 +257,18 @@ extern int fncmp (const char *n1, const char *n2);
definition for this. */
extern void fnfold (char *FILENAME);
+/* #define this if your system terminates lines in text files with
+ CRLF instead of plain LF, and your I/O functions automatically
+ translate between using LF in memory and CRLF on disk, unless you
+ specifically tell them not to. */
+#define LINES_CRLF_TERMINATED 1
+
+/* Read data from INFILE, and copy it to OUTFILE.
+ Open INFILE using INFLAGS, and OUTFILE using OUTFLAGS.
+ This is useful for converting between CRLF and LF line formats. */
+extern void convert_file (char *INFILE, int INFLAGS,
+ char *OUTFILE, int OUTFLAGS);
+
/* This is where old bits go to die under OS/2 as well as WinNT. */
#define DEVNULL "nul"
@@ -311,6 +323,3 @@ extern int os2_fnmatch(const char *pattern, const char *name, int flags);
/* See above; we can't use rsh without -b. */
#define RSH_NOT_TRANSPARENT 1
-
-/* See discussion at xchmod in filesubr.c. */
-#define CHMOD_BROKEN 1