repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Raise version up to 3.3.8.
[Samba.git]
/
source
/
tests
/
ftruncate.c
blob
93282782eedb15207ce51e42baaa377c9fc2961a
1
/* test whether ftruncte() can extend a file */
2
3
#if defined(HAVE_UNISTD_H)
4
#include <unistd.h>
5
#endif
6
7
#include <sys/types.h>
8
#include <sys/stat.h>
9
#include <fcntl.h>
10
11
#define DATA
"conftest.trunc"
12
#define LEN 7663
13
14
main
()
15
{
16
int
*
buf
;
17
int
fd
=
open
(
DATA
,
O_RDWR
|
O_CREAT
|
O_TRUNC
,
0666
);
18
19
ftruncate
(
fd
,
LEN
);
20
21
unlink
(
DATA
);
22
23
if
(
lseek
(
fd
,
0
,
SEEK_END
) ==
LEN
) {
24
exit
(
0
);
25
}
26
exit
(
1
);
27
}