Assorted whitespace cleanup and typo fixes.
[haiku.git] / src / system / libroot / posix / pthread / pthread_atfork.c
blobc2662d1ac5739fd5b0ca0aa84e7dbd081d63d719
1 /*
2 ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the Haiku License.
4 */
7 #include <pthread.h>
8 #include <fork.h>
11 int
12 pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void))
14 return __register_atfork(prepare, parent, child);