/*** Copyright 2004, Axel DΓΆrfler, axeld@pinc-software.de. All rights reserved.** Distributed under the terms of the MIT License.*/#include <pthread.h>#include <fork.h>intpthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)){return __register_atfork(prepare, parent, child);}