Rafael Espindola | 0f207ed | 2012-12-13 04:17:14 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple arm-unknown-freebsd10.0 -verify %s |
2 | // expected-no-diagnostics | ||||
3 | |||||
4 | /* Define a size_t as expected for FreeBSD ARM */ | ||||
5 | typedef unsigned int size_t; | ||||
6 | |||||
7 | /* Declare a builtin function that uses size_t */ | ||||
8 | void *malloc(size_t); | ||||
9 |