mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 01:31:08 +00:00
Fix compilation of NSTask test processgroup helper on Windows.
This commit is contained in:
parent
4ceea4159c
commit
8f31087119
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
#include <Foundation/Foundation.h>
|
||||
#if !defined(__MINGW32__)
|
||||
#if !defined(_WIN32)
|
||||
#include <sys/file.h>
|
||||
#include <sys/fcntl.h>
|
||||
#include <unistd.h>
|
||||
|
@ -14,7 +14,7 @@ main(int argc, char **argv)
|
|||
int i = 0;
|
||||
NSAutoreleasePool *arp = [NSAutoreleasePool new];
|
||||
|
||||
#if !defined(__MINGW32__)
|
||||
#if !defined(_WIN32)
|
||||
/*
|
||||
printf("argc %d\n", argc);
|
||||
for (i = 0; i < argc; i++)
|
||||
|
|
Loading…
Reference in a new issue