Sign in
gnu
/
binutils-gdb
/
bd7c19dff4b424b7328ebad67a09d7deb2eeef56
/
.
/
sim
/
testsuite
/
cris
/
c
/
getcwd1.c
blob: f7b6bd923da5e9f1afdcffe284f0b0fc1b1dc68a [
file
]
/*
#progos: linux
*/
#include
<unistd.h>
#include
<errno.h>
#include
<stdio.h>
#include
<stdlib.h>
int
main
(
int
argc
,
char
*
argv
[])
{
if
(
getcwd
((
void
*)
-
1
,
4096
)
!=
NULL
||
errno
!=
EFAULT
)
abort
();
printf
(
"pass\n"
);
exit
(
0
);
}