1 1.1.2.2 nathanw /* $NetBSD: Lint___clone.c,v 1.1.2.2 2001/10/08 20:21:30 nathanw Exp $ */ 2 1.1.2.2 nathanw 3 1.1.2.2 nathanw /* 4 1.1.2.2 nathanw * This file placed in the public domain. 5 1.1.2.2 nathanw * Jason R. Thorpe, July 16, 2001. 6 1.1.2.2 nathanw */ 7 1.1.2.2 nathanw 8 1.1.2.2 nathanw #include <sched.h> 9 1.1.2.2 nathanw 10 1.1.2.2 nathanw /*ARGSUSED*/ 11 1.1.2.2 nathanw pid_t 12 1.1.2.2 nathanw __clone(int (*func)(void *), void *stack, int flags, void *arg) 13 1.1.2.2 nathanw { 14 1.1.2.2 nathanw return (0); 15 1.1.2.2 nathanw } 16