1
0
mirror of https://git.disroot.org/80486DX2-66/polonium.git synced 2024-11-08 13:42:31 +05:30
polonium/include/strdup.h
Intel A80486DX2-66 ee1dff912b
downgrade POSIX C source version to 2001-12
Implement `strdup` to not require version 2008-09
2024-08-06 23:04:20 +03:00

12 lines
178 B
C

#ifndef _STRDUP_H
#define _STRDUP_H
#include <errno.h>
#include <stdlib.h>
#include <string.h>
/* functions definitions */
char* strdup(const char* s);
#endif /* _STRDUP_H */