brintos

brintos / llvm-project-archived public Read only

0
0
Text · 243 B · ba7bfec Raw
10 lines · c
1// RUN: %clang_cc1 -triple arm-unknown-freebsd10.0 -verify %s2// expected-no-diagnostics3 4/* Define a size_t as expected for FreeBSD ARM */5typedef unsigned int size_t;6 7/* Declare a builtin function that uses size_t */8void *malloc(size_t);9 10