mirror of
https://github.com/cahirwpz/libnix.git
synced 2025-11-19 16:00:58 +00:00
Took out unneeded OpenLibrary line (used in debugging which has disappeared).
This commit is contained in:
@ -59,10 +59,9 @@ void *malloc(size_t size)
|
||||
|
||||
void __initmalloc(void)
|
||||
{
|
||||
struct Library *DOSBase = OpenLibrary("dos.library", 0);
|
||||
NewList((struct List *)&__memorylist);
|
||||
__memsema = AllocMem(sizeof(struct SignalSemaphore), MEMF_PUBLIC | MEMF_CLEAR);
|
||||
InitSemaphore(__memsema);
|
||||
NewList((struct List *)&__memorylist);
|
||||
__memsema = AllocMem(sizeof(struct SignalSemaphore), MEMF_PUBLIC | MEMF_CLEAR);
|
||||
InitSemaphore(__memsema);
|
||||
}
|
||||
|
||||
void __exitmalloc(void)
|
||||
|
||||
Reference in New Issue
Block a user