| // RUN: %check_clang_tidy %s cert-err33-c %t |
| typedef __SIZE_TYPE__ size_t; |
| void *aligned_alloc(size_t alignment, size_t size); |
| void test_aligned_alloc(void) { |
| // CHECK-MESSAGES: [[@LINE-1]]:3: warning: the value returned by this function should not be disregarded; neglecting it may lead to errors |
| // CHECK-MESSAGES: [[@LINE-2]]:3: note: cast the expression to void to silence this warning |
| long strtol(const char *restrict nptr, char **restrict endptr, int base); |
| // CHECK-MESSAGES: [[@LINE-1]]:3: warning: the value returned by this function should not be disregarded; neglecting it may lead to errors |
| // CHECK-MESSAGES: [[@LINE-2]]:3: note: cast the expression to void to silence this warning |
| int wscanf_s(const wchar_t *restrict format, ...); |
| void test_wscanf_s(void) { |
| // CHECK-MESSAGES: [[@LINE-1]]:3: warning: the value returned by this function should not be disregarded; neglecting it may lead to errors |
| // CHECK-MESSAGES: [[@LINE-2]]:3: note: cast the expression to void to silence this warning |
| int remove(const char *path); |
| int removeNonStdLibFunc(const char *path); |
| // CHECK-MESSAGES: [[@LINE-1]]:3: warning: the value returned by this function should not be disregarded; neglecting it may lead to errors |
| // CHECK-MESSAGES: [[@LINE-2]]:3: note: cast the expression to void to silence this warning |
| removeNonStdLibFunc("123"); |