fortify-headers

standalone fortify-source implementation
git clone git://git.2f30.org/fortify-headers
Log | Files | Refs | README | LICENSE

test_wcrtomb.c (102B)


      1 #include "common.h"
      2 
      3 #include <wchar.h>
      4 
      5 int main() {
      6 	char c;
      7 	wcrtomb(&c, L'0', NULL);
      8 	return 0;
      9 }