Retro68/gcc/newlib/libc/sys/linux/profile.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

13 lines
329 B
C

/* libc/sys/linux/profile.c - profiling system call */
#include <errno.h>
#include <sys/types.h>
#include <machine/syscall.h>
#define __NR_profil 98
int profil(u_short *buf, size_t bufsiz, size_t offset,
u_int scale);
_syscall4(int,profil,unsigned short *,buf,size_t,bufsiz,size_t,offset,unsigned int, scale)