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