mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:43:04 +00:00
11 lines
228 B
C
11 lines
228 B
C
/* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
|
|
#include <crtdll/io.h>
|
|
|
|
int _chsize(int _fd, long size)
|
|
{
|
|
if (lseek(_fd, size, 0) == -1)
|
|
return -1;
|
|
if (_write(_fd, 0, 0) < 0)
|
|
return -1;
|
|
return 0;
|
|
}
|