/* ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. ** Distributed under the terms of the MIT License. */ #include #include int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) { return __register_atfork(prepare, parent, child); }