Home | History | Annotate | Line # | Download | only in sys
Lint_clone.c revision 1.1.2.2
      1  1.1.2.2  nathanw /* $NetBSD: Lint_clone.c,v 1.1.2.2 2001/10/08 20:21:31 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