Nico Weber 74989aff53 compiler-rt: Rename cc files below test/sanitizer_common to cpp
See r367803 and similar other changes.

llvm-svn: 367863
2019-08-05 13:57:03 +00:00

24 lines
401 B
C++

// RUN: %clangxx -O0 -g %s -o %t && %run %t 2>&1 | FileCheck %s
// UNSUPPORTED: android
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
int main(void) {
printf("getusershell\n");
setusershell();
char *fentry = getusershell();
printf("First entry: '%s'\n", fentry);
endusershell();
return 0;
// CHECK: getusershell
// CHECK: First entry: '{{.*}}'
}