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