Sign in
nest-open-source
/
nest-cam
/
4320010
/
strace
/
refs/heads/master
/
.
/
strace
/
getcwd.c
blob: 329762397ede99a1231d82fff09d889743625427 [
file
] [
log
] [
blame
] [
edit
]
#include
"defs.h"
SYS_FUNC
(
getcwd
)
{
if
(
exiting
(
tcp
))
{
if
(
syserror
(
tcp
))
printaddr
(
tcp
->
u_arg
[
0
]);
else
printpathn
(
tcp
,
tcp
->
u_arg
[
0
],
tcp
->
u_rval
-
1
);
tprintf
(
", %lu"
,
tcp
->
u_arg
[
1
]);
}
return
0
;
}