libregexp: include stddef.h in lib9.std.h

Commit 2d82ef9d98 added ptrdiff_t in regcomp.c.
However, this change broke the build of the Unix
package because ptrdiff_t is defined in stddef.h.
This commit is contained in:
David du Colombier 2018-09-29 15:59:31 +02:00
parent a82a8b6368
commit de3b6d5848

View file

@ -3,6 +3,7 @@
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <stddef.h>
#define exits(x) exit(x && *x ? 1 : 0)