Then we can also remove the added -std=gnu17
PR testsuite/113634
* gcc.dg/Wfree-nonheap-object-7.c: Adjust calloc and realloc
declarations, remove -std=gnu17.
/* { dg-do compile } */
-/* { dg-options "-std=gnu17 -O2 -Wfree-nonheap-object" } */
+/* { dg-options "-O2 -Wfree-nonheap-object" } */
struct local_caches *get_local_caches_lcs;
-void *calloc(long, long);
-void *realloc();
+void *calloc(__SIZE_TYPE__, __SIZE_TYPE__);
+void *realloc(void *, __SIZE_TYPE__);
struct local_caches {
int *t_mem_caches;