From: khan AT xraylith DOT wisc DOT edu (Mumit Khan) Subject: tiny patch for execvp [Re: Problems with winsup-981223] 24 Dec 1998 10:14:14 -0800 Message-ID: References: <36820E45 DOT F08619FA AT cityweb DOT de> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII To: cygwin32-developers AT cygnus DOT com On Thu, 24 Dec 1998, Corinna Vinschen wrote: > ----------- > undefined symbol from libc.a(execvp.o): posix_path_list_p Thu Dec 24 00:07:52 1998 Mumit Khan * libc/posix/execvp.c (execvp): Use cygwin_posix_path_list_p, not posix_path_list_p. Index: libc/posix/execvp.c =================================================================== RCS file: /home/khan/CVSROOT/cygwin/dev/newlib/libc/posix/execvp.c,v retrieving revision 1.1.1.1 diff -u -3 -p -r1.1.1.1 execvp.c --- libc/posix/execvp.c 1998/12/24 04:56:39 1.1.1.1 +++ libc/posix/execvp.c 1998/12/24 06:07:37 @@ -66,7 +66,7 @@ _DEFUN (execvp, (file, argv), #endif #ifdef __CYGWIN32__ - path_delim = posix_path_list_p (path) ? ':' : ';'; + path_delim = cygwin_posix_path_list_p (path) ? ':' : ';'; #endif while (*path) Regards, Mumit