diff options
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/bsd-cygwin_util.c | 17 | ||||
-rw-r--r-- | openbsd-compat/bsd-cygwin_util.h | 6 |
2 files changed, 3 insertions, 20 deletions
diff --git a/openbsd-compat/bsd-cygwin_util.c b/openbsd-compat/bsd-cygwin_util.c index e9fa3a0e2..9eedc88d2 100644 --- a/openbsd-compat/bsd-cygwin_util.c +++ b/openbsd-compat/bsd-cygwin_util.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) 2000, 2001, Corinna Vinschen <vinschen@cygnus.com> | 2 | * Copyright (c) 2000, 2001, 2011 Corinna Vinschen <vinschen@redhat.com> |
3 | * | 3 | * |
4 | * Redistribution and use in source and binary forms, with or without | 4 | * Redistribution and use in source and binary forms, with or without |
5 | * modification, are permitted provided that the following conditions | 5 | * modification, are permitted provided that the following conditions |
@@ -34,9 +34,6 @@ | |||
34 | #if defined(open) && open == binary_open | 34 | #if defined(open) && open == binary_open |
35 | # undef open | 35 | # undef open |
36 | #endif | 36 | #endif |
37 | #if defined(pipe) && open == binary_pipe | ||
38 | # undef pipe | ||
39 | #endif | ||
40 | 37 | ||
41 | #include <sys/types.h> | 38 | #include <sys/types.h> |
42 | 39 | ||
@@ -59,18 +56,6 @@ binary_open(const char *filename, int flags, ...) | |||
59 | return (open(filename, flags | O_BINARY, mode)); | 56 | return (open(filename, flags | O_BINARY, mode)); |
60 | } | 57 | } |
61 | 58 | ||
62 | int | ||
63 | binary_pipe(int fd[2]) | ||
64 | { | ||
65 | int ret = pipe(fd); | ||
66 | |||
67 | if (!ret) { | ||
68 | setmode(fd[0], O_BINARY); | ||
69 | setmode(fd[1], O_BINARY); | ||
70 | } | ||
71 | return (ret); | ||
72 | } | ||
73 | |||
74 | int | 59 | int |
75 | check_ntsec(const char *filename) | 60 | check_ntsec(const char *filename) |
76 | { | 61 | { |
diff --git a/openbsd-compat/bsd-cygwin_util.h b/openbsd-compat/bsd-cygwin_util.h index 39b8eb788..48f64b740 100644 --- a/openbsd-compat/bsd-cygwin_util.h +++ b/openbsd-compat/bsd-cygwin_util.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /* $Id: bsd-cygwin_util.h,v 1.12 2009/03/08 00:40:28 dtucker Exp $ */ | 1 | /* $Id: bsd-cygwin_util.h,v 1.13 2011/08/17 01:31:09 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2000, 2001, Corinna Vinschen <vinschen@cygnus.com> | 4 | * Copyright (c) 2000, 2001, 2011 Corinna Vinschen <vinschen@redhat.com> |
5 | * | 5 | * |
6 | * Redistribution and use in source and binary forms, with or without | 6 | * Redistribution and use in source and binary forms, with or without |
7 | * modification, are permitted provided that the following conditions | 7 | * modification, are permitted provided that the following conditions |
@@ -41,13 +41,11 @@ | |||
41 | #include <io.h> | 41 | #include <io.h> |
42 | 42 | ||
43 | int binary_open(const char *, int , ...); | 43 | int binary_open(const char *, int , ...); |
44 | int binary_pipe(int fd[2]); | ||
45 | int check_ntsec(const char *); | 44 | int check_ntsec(const char *); |
46 | char **fetch_windows_environment(void); | 45 | char **fetch_windows_environment(void); |
47 | void free_windows_environment(char **); | 46 | void free_windows_environment(char **); |
48 | 47 | ||
49 | #define open binary_open | 48 | #define open binary_open |
50 | #define pipe binary_pipe | ||
51 | 49 | ||
52 | #endif /* HAVE_CYGWIN */ | 50 | #endif /* HAVE_CYGWIN */ |
53 | 51 | ||