4f294c247f
This patch mainly copies and modifies files existing in the current libc implementing minix specific functions. To keep consisten with the NetBSD libc, we remove namespace stubs and we use "namespace.h" and weak links.
16 lines
212 B
C
16 lines
212 B
C
#include <sys/cdefs.h>
|
|
#include <lib.h>
|
|
#include "namespace.h"
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(sync, _sync)
|
|
#endif
|
|
|
|
#include <unistd.h>
|
|
|
|
void sync()
|
|
{
|
|
message m;
|
|
|
|
(void)(_syscall(VFS_PROC_NR, SYNC, &m));
|
|
}
|