]> Zhao Yanbai Git Server - minix.git/commitdiff
Fixed missing __UNCONST macro definition in previous patch.
authorLorenzo Cavallaro <lorenzo@minix3.org>
Tue, 30 Mar 2010 13:08:14 +0000 (13:08 +0000)
committerLorenzo Cavallaro <lorenzo@minix3.org>
Tue, 30 Mar 2010 13:08:14 +0000 (13:08 +0000)
lib/libc/posix/_execl.c
lib/libc/posix/_execle.c
lib/libc/posix/_execlp.c

index 9337e59ae637c552d3032c68b00e124934ad4298..ba300191722757ca9d99fa06783ee8780c29b8c7 100644 (file)
 #include <alloca.h>
 #include <lib.h>
 
+#ifndef __UNCONST
+#define __UNCONST(x) ((void *) (x))
+#endif
+
 extern char * const **_penviron;       /* The default environment. */
 
 int
index bb9fe198748098255f73aab5ca2f1048f1d92365..235fac99513b699f04b03cb97cc4ca8ebc1cc26c 100644 (file)
 #include <alloca.h>
 #include <lib.h>
 
+#ifndef __UNCONST
+#define __UNCONST(x) ((void *) (x))
+#endif
+
 int execle(const char *path, const char *arg1, ...)
 /* execle("/bin/sh", "sh", "-c", "example", (char *) 0, my_env_array); */
 {
index 4d3daefd03f34e35b60e866d53c8b0e1bed109c8..9965223fb49831e09b042af8dc0bd96c36b0e10d 100644 (file)
 #include <alloca.h>
 #include <lib.h>
 
+#ifndef __UNCONST
+#define __UNCONST(x) ((void *) (x))
+#endif
+
 int execlp(const char *file, const char *arg1, ...)
 /* execlp("sh", "sh", "-c", "example", (char *) 0); */
 {