Files
42_KFS/libbozo/src/stdlib/atol.c

6 lines
85 B
C

#include "../../headers/stdlib.h"
long atol(const char *str)
{
return atoll(str);
}