Browse Source

bin2char: for win32 set stdin/stdout to binary mode

Signed-off-by: Spencer Oliver <ntfreak@users.sourceforge.net>
tags/v0.3.0
Spencer Oliver 13 years ago
parent
commit
e8a5092f1e
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      src/helper/bin2char.c

+ 10
- 0
src/helper/bin2char.c View File

@@ -21,6 +21,10 @@
#include <stdio.h>
#include <stdlib.h>

#ifdef _WIN32
#include <fcntl.h>
#endif

int main(int argc, char **argv)
{
int c;
@@ -34,6 +38,12 @@ int main(int argc, char **argv)
exit(1);
}

#ifdef _WIN32
/* for win32 set stdin/stdout to binary mode */
_setmode(_fileno(stdin), _O_BINARY);
_setmode(_fileno(stdout), _O_BINARY);
#endif

n = 0;
name = argv[1];
fprintf(stdout, "/* autogenerated from %s */\n", argv[0]);


Loading…
Cancel
Save