Import Upstream version 20180207
[hcoop/debian/mlton.git] / runtime / basis / Posix / FileSys / truncate.c
1 #include "platform.h"
2
3 C_Errno_t(C_Int_t) Posix_FileSys_truncate (NullString8_t p, C_Off_t n) {
4 return truncate ((const char*)p, n);
5 }