diff options
Diffstat (limited to 'runtime/GCCLibraries/crtend/crtend.c')
-rw-r--r-- | runtime/GCCLibraries/crtend/crtend.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/runtime/GCCLibraries/crtend/crtend.c b/runtime/GCCLibraries/crtend/crtend.c new file mode 100644 index 0000000..561b6fd --- /dev/null +++ b/runtime/GCCLibraries/crtend/crtend.c @@ -0,0 +1,16 @@ +/*===- crtend.c - Initialization code for programs ------------------------===*\ + * + * The LLVM Compiler Infrastructure + * + * This file was developed by the LLVM research group and is distributed under + * the University of Illinois Open Source License. See LICENSE.TXT for details. + * + *===----------------------------------------------------------------------===* + * + * This file defines the __main function, which we preserve for backwards + * compatibility. + * +\*===----------------------------------------------------------------------===*/ + +void __main(void) { +} |