mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-09-26 19:38:53 +02:00
18 lines
401 B
C
18 lines
401 B
C
#include "crtheaders.h"
|
|
#include STDIO_H
|
|
|
|
/* stdio.h overrides */
|
|
FILE* w32_fopen_utf8(const char *, const char *);
|
|
#define fopen w32_fopen_utf8
|
|
|
|
/* stdio.h additional definitions */
|
|
#define popen _popen
|
|
#define pclose _pclose
|
|
|
|
FILE* w32_fdopen(int fd, const char *mode);
|
|
#define fdopen(a,b) w32_fdopen((a), (b))
|
|
|
|
int w32_rename(const char *old_name, const char *new_name);
|
|
#define rename w32_rename
|
|
|