#ifndef __TEE_STDLIB_H__
#define __TEE_STDLIB_H__

#ifndef strncasecmp
#include <stddef.h>

int strncasecmp(const char *s1, const char *s2, size_t n);
#endif	// End of strncasecmp

#ifndef qsort
void qsort(void *aa, size_t n, size_t es, int (*cmp)(const void *, const void *));
#endif	// End of qsort

#endif // End of __TEE_STDLIB_H__
