repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
include: reduce default stack size
[minix.git]
/
lib
/
libc
/
sys
/
Lint_clone.c
blob
b4fd98cdab2cc6c5069121bfa86ef0f593fd96d7
1
/* $NetBSD: Lint_clone.c,v 1.2 2003/01/18 11:32:58 thorpej 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
}