1
0
mirror of https://git.disroot.org/80486DX2-66/polonium.git synced 2024-11-09 06:02:41 +05:30
polonium/include/strdup.h
Intel A80486DX2-66 adb7e9884d
downgrade POSIX C source version to 2001-12
Implement `strdup` to not require version 2008-09
2024-08-06 23:11:13 +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 */