summaryrefslogtreecommitdiffstats
path: root/cygwin_util.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-01-31 21:52:01 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-01-31 21:52:01 +0000
commit3c06f6a0b234822c7b2d6c63ef1aaf554af7167b (patch)
tree86e5fe626cb9cbade752baf2440badfa19976200 /cygwin_util.h
parentbf75776d415126a415ac92fb767c70dc67feba4f (diff)
- (bal) Reorder. Move all bsd-*, fake-*, next-*, and cygwin* stuff to
openbsd-compat/. And resolve all ./configure and Makefile.in issues assocated. Logic: * All OpenBSD functions should have the same filename as in the OpenBSD tree * All 'home brew' functions have bsd-* infront of them. * All 'not really implemented' functions have fake-* infront of them.
Diffstat (limited to 'cygwin_util.h')
-rw-r--r--cygwin_util.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/cygwin_util.h b/cygwin_util.h
deleted file mode 100644
index bf90d029..00000000
--- a/cygwin_util.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- *
- * cygwin_util.c
- *
- * Author: Corinna Vinschen <vinschen@cygnus.com>
- *
- * Copyright (c) 2000 Corinna Vinschen <vinschen@cygnus.com>, Duisburg, Germany
- * All rights reserved
- *
- * Created: Sat Sep 02 12:17:00 2000 cv
- *
- * This file contains functions for forcing opened file descriptors to
- * binary mode on Windows systems.
- */
-
-#include "config.h"
-
-#ifdef HAVE_CYGWIN
-
-int binary_open(const char *filename, int flags, ...);
-int binary_pipe(int fd[2]);
-int check_nt_auth(int pwd_authenticated, uid_t uid);
-int check_ntsec(const char *filename);
-
-#define open binary_open
-#define pipe binary_pipe
-
-#endif /* HAVE_CYGWIN */