Home | History | Annotate | Download | only in Misc
      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 
     10