Fix another compilation issue in tester for bb10

This commit is contained in:
Sylvain Berfini 2015-10-13 10:51:29 +02:00
parent fd526c3fb5
commit 8f327cf558

View file

@ -30,7 +30,7 @@
/*getline is POSIX 2008, not available on many systems.*/
#if defined(ANDROID) || defined(_WIN32)
#if defined(ANDROID) || defined(_WIN32) || defined(__QNX__)
/* This code is public domain -- Will Hartung 4/9/09 */
static size_t getline(char **lineptr, size_t *n, FILE *stream) {
char *bufptr = NULL;