Added "-p" to make parent directories as needed.
[AROS.git] / arch / m68k-amiga / exec / exec_globals.c
blobc9c713642ca7e914bc40e50b77f7309e0af65fe6
1 /*
2 * Copyright (C) 2011, The AROS Development Team. All rights reserved.
3 * Author: Jason S. McMullan <jason.mcmullan@gmail.com>
5 * Licensed under the AROS PUBLIC LICENSE (APL) Version 1.1
7 * Global variables referenced by exec.library
8 */
10 #include <aros/symbolsets.h>
11 #include <exec/execbase.h>
13 extern struct ExecBase *AbsExecBase; /* Global SysBase */
15 static int Exec_init_globals(struct ExecBase *lh)
17 AbsExecBase = lh;
19 return TRUE;
22 ADD2INITLIB(Exec_init_globals,0)