comparison: select the caller_info
[smatch.git] / validation / builtin-prototype.c
blobd713db45c30f0dd7438cffd16e687433844754d8
1 void memcpy(void *dst, const void *src, unsigned int size);
2 void memcpy(void *dst, const void *src, unsigned int size)
4 __builtin_memcpy(dst, src, size);
7 unsigned int strlen(const char *src);
8 unsigned int strlen(const char *src)
10 return __builtin_strlen(src);
14 * check-name: builtin-prototype