freebsd-arm-size_t.c 243 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 // RUN: %clang_cc1 -triple arm-unknown-freebsd10.0 -verify %s // expected-no-diagnostics /* Define a size_t as expected for FreeBSD ARM */ typedef unsigned int size_t; /* Declare a builtin function that uses size_t */ void *malloc(size_t);