muimaster.library: update minor version
[AROS.git] / compiler / autoinit / detach.h
blob5752b3bf8600736142e6090975fe9dbd71bb85ba
1 /*
2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #ifndef DETACH_H
7 #define DETACH_H
9 #include <aros/system.h>
11 __BEGIN_DECLS
13 /* When you link your program with the startup file detach.o, you might
14 want to take control over the detaching procedure, by being able to
15 tell the detacher process exactly when to detach. In this case,
16 simply use the Detach() function wherever you want the detaching to
17 happen. If you don't use this function, then the program will be detached
18 before the main() function is reached. */
19 void Detach(void);
21 __END_DECLS
23 #endif /* !DETACH_H */