Optimie x86-64 SSE4 memcmp for unaligned data.
[glibc.git] / posix / tst-execle1.c
blob84470703f1f306bf496d1fdce5cece0d01068148
1 #include <errno.h>
2 #include <stdio.h>
3 #include <unistd.h>
5 static int
6 do_test (void)
8 static const char prog[] = "does-not-exist";
9 const char *env [] = {"FOO=BAR", NULL};
10 errno = 0;
11 execle (prog, prog, NULL, env);
13 if (errno != ENOENT)
15 printf ("errno = %d (%m), expected ENOENT\n", errno);
16 return 1;
19 return 0;
22 #define TEST_FUNCTION do_test ()
23 #include "../test-skeleton.c"