Files
Espresso/include/stdlib.h

13 lines
151 B
C
Raw Permalink Normal View History

2025-05-28 14:41:02 -05:00
#ifndef STDLIB_H
#define STDLIB_H
2025-06-17 15:50:07 -05:00
#include <types.h>
2025-05-28 14:41:02 -05:00
#include <mm/mm.h>
#include <stdio.h>
#include <string.h>
2025-06-17 15:50:07 -05:00
void sleep(uint64_t millis);
2025-05-28 14:41:02 -05:00
#endif