Home | History | Annotate | Line # | Download | only in sys
Lint___clone.c revision 1.1
      1  1.1  thorpej /* $NetBSD: Lint___clone.c,v 1.1 2001/07/17 03:05:43 thorpej Exp $ */
      2  1.1  thorpej 
      3  1.1  thorpej /*
      4  1.1  thorpej  * This file placed in the public domain.
      5  1.1  thorpej  * Jason R. Thorpe, July 16, 2001.
      6  1.1  thorpej  */
      7  1.1  thorpej 
      8  1.1  thorpej #include <sched.h>
      9  1.1  thorpej 
     10  1.1  thorpej /*ARGSUSED*/
     11  1.1  thorpej pid_t
     12  1.1  thorpej __clone(int (*func)(void *), void *stack, int flags, void *arg)
     13  1.1  thorpej {
     14  1.1  thorpej 	return (0);
     15  1.1  thorpej }
     16