blob: 68b4ad5b887d1ab99c33a3d26a800719e7c2a4fd [file] [log] [blame]
// RUN: %clangxx -O0 -g %s -o %t && %run %t
// fgetln is BSD-only.
// UNSUPPORTED: target={{.*(linux|solaris).*}}
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
int main(void) {
FILE *fp = fopen("/etc/hosts", "r");
assert(fp);
size_t len;
char *s = fgetln(fp, &len);
printf("%.*s\n", (int)len, s);
assert(!fclose(fp));
return 0;
}