fix implicity def for memcpy in qsort

This commit is contained in:
K. Lange 2018-04-21 22:08:04 +09:00 committed by Kevin Lange
parent 3552b72cdc
commit 3b69421dfe
1 changed files with 1 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <sys/types.h>
void qsort(void * base, size_t nmemb, size_t size, int (*compar)(const void *, const void *)) {