Merge "vwebp: ensure setenv() is available in stdlib.h"

This commit is contained in:
James Zern 2016-10-01 02:56:53 +00:00 committed by Gerrit Code Review
commit 51b71fd295

View File

@ -14,6 +14,10 @@
#include "webp/config.h"
#endif
#if defined(__unix__) || defined(__CYGWIN__)
#define _POSIX_C_SOURCE 200112L // for setenv
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>