xref: /netbsd-src/lib/libc/sys/Lint_clone.c (revision f8cf1a9151c7af1cb0bd8b09c13c66bca599c027)
1 /* $NetBSD: Lint_clone.c,v 1.3 2024/01/20 14:52:49 christos 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