Eliminate conditionalization on OS_open_append_file; this procedure
authorChris Hanson <org/chris-hanson/cph>
Fri, 22 Aug 1997 16:33:14 +0000 (16:33 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 22 Aug 1997 16:33:14 +0000 (16:33 +0000)
compiles and runs just fine and probably should not have been
conditionalized in the first place.

v7/src/microcode/ntfile.c

index 1e31fa812ae245bd3e09b0953ae6c9df7149ab1d..486e4c61991dd40fef03595da8c33ba389fe0bd6 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: ntfile.c,v 1.9 1997/06/19 05:55:34 cph Exp $
+$Id: ntfile.c,v 1.10 1997/08/22 16:33:14 cph Exp $
 
 Copyright (c) 1992-97 Massachusetts Institute of Technology
 
@@ -115,9 +115,6 @@ DEFUN_OPEN_FILE (OS_open_io_file,
    (FILE_SHARE_READ | FILE_SHARE_WRITE), 0,
    OPEN_ALWAYS, (FILE_ATTRIBUTE_NORMAL | FILE_FLAG_RANDOM_ACCESS), 0));
 
-
-#ifdef HAVE_APPEND
-
 Tchannel
 DEFUN (OS_open_append_file, (filename), CONST char * filename)
 {
@@ -136,17 +133,6 @@ DEFUN (OS_open_append_file, (filename), CONST char * filename)
     NT_error_api_call ((GetLastError ()), apicall_SetFilePointer);
   return (OS_open_handle (hFile));
 }
-
-#else
-
-Tchannel
-DEFUN (OS_open_append_file, (filename), CONST char * filename)
-{
-  error_unimplemented_primitive ();
-  return (0);
-}
-
-#endif
 \f
 static Tchannel
 DEFUN (make_load_channel, (handle), HANDLE handle)