+Wed Feb 10 10:05:23 1999 Mumit Khan <khan@xraylith.wisc.edu>
+
+ * collect2.c (collect_execute): Remove cygwin-specific code.
+
Tue Feb 9 17:27:29 GMT 1999 Nathan Sidwell <nathan@acm.org>
* system.h (_, N_): Remove dummy i18n macros.
#include "demangle.h"
#include "obstack.h"
#include "intl.h"
-#ifdef __CYGWIN__
-#include <process.h>
-#endif
/* Obstack allocation and deallocation routines. */
#define obstack_chunk_alloc xmalloc
if (argv[0] == 0)
fatal ("cannot find `%s'", prog);
-#ifndef __CYGWIN__
pid = vfork ();
if (pid == -1)
fatal_perror (VFORK_STRING);
execvp (argv[0], argv);
fatal_perror ("execvp %s", prog);
}
-#else
- pid = _spawnvp (_P_NOWAIT, argv[0], argv);
- if (pid == -1)
- fatal ("spawnvp failed");
-#endif
}
static void