Home | History | Annotate | Line # | Download | only in sys
      1 /* $NetBSD: Lint_clone.c,v 1.4 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 #define _GNU_SOURCE
      9 #include <sched.h>
     10 
     11 /*ARGSUSED*/
     12 pid_t
     13 clone(int (*func)(void *), void *stack, int flags, void *arg)
     14 {
     15 	return 0;
     16 }
     17