Files
Upsilon/liba/src/bridge.c
Romain Goyet d9b0132f16 [liba] Add a bridge for incomplete libc
For example, GLIBC doesn't provide strlcpy which we want to use

Change-Id: Iebbadfd42ca8e5dc089a8fe0b670fef843a10027
2016-10-04 14:22:19 +02:00

6 lines
63 B
C

#include <string.h>
#if __GLIBC__
#include "strlcpy.c"
#endif