plan9fox/sys/src/ape/lib/9/segflush.c
2011-03-30 19:35:09 +03:00

10 lines
138 B
C

#include <lib9.h>
extern int _SEGFLUSH(void*, unsigned long);
int
segflush(void *va, unsigned long len)
{
return _SEGFLUSH(va, len);
}