mirror of
https://github.com/encounter/newlib.git
synced 2026-03-30 11:31:09 -07:00
11 lines
189 B
C
11 lines
189 B
C
#ifndef __HANDLE_MANAGER_H__
|
|
#define __HANDLE_MANAGER_H__
|
|
|
|
#include <sys/iosupport.h>
|
|
|
|
void __release_handle(int fd);
|
|
int __alloc_handle(int size);
|
|
__handle *__get_handle(int fd);
|
|
|
|
#endif
|