repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed bash/dash/sh issue (Ubuntu)
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libc
/
sys
/
sh
/
truncate.c
blob
5ca48d3c6b0d050bbdb48b9eb067d60b87348d25
1
#include <_ansi.h>
2
#include <sys/types.h>
3
#include
"sys/syscall.h"
4
5
int
6
truncate
(
const char
*
path
,
off_t length
)
7
{
8
return
__trap34
(
SYS_truncate
,
path
,
length
,
0
);
9
}