stdlib: add missing features to build PolarSSL
This patch adds the missing features to the C library included in the Trusted Firmware to build PolarSSL: - strcasecmp() function - exit() function - sscanf()* function - time.h header file (and its dependencies) * NOTE: the sscanf() function is not a real implementation. It just returns the number of expected arguments by counting the number of '%' characters present in the formar string. This return value is good enough for PolarSSL because during the certificate parsing only the return value is checked. The certificate validity period is ignored. Change-Id: I43bb3742f26f0bd458272fccc3d72a7f2176ab3d
include/stdlib/inttypes.h
0 → 100644
include/stdlib/stdlib.h
0 → 100644
include/stdlib/strings.h
0 → 100644
include/stdlib/sys/types.h
0 → 100644
include/stdlib/time.h
0 → 100644
lib/stdlib/exit.c
0 → 100644
lib/stdlib/sscanf.c
0 → 100644
Please register or sign in to comment