13 lines
192 B
C
Raw Normal View History

2017-04-11 23:13:36 +02:00
#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
2018-12-28 16:30:48 +01:00
#include "trap.h"
2017-04-11 23:13:36 +02:00
int
chown (const char *path, short owner, short group)
{
return TRAP0 (SYS_chown, path, owner, group);
}