Blame SOURCES/memstomp-implicit-int.patch

383a11
diff -Nrup a/testsuite/memstomp.nooverlap/memccpy.c b/testsuite/memstomp.nooverlap/memccpy.c
383a11
--- a/testsuite/memstomp.nooverlap/memccpy.c	2015-05-26 19:20:36.001837645 -0600
383a11
+++ b/testsuite/memstomp.nooverlap/memccpy.c	2015-05-26 19:21:12.500043292 -0600
383a11
@@ -12,6 +12,8 @@ TYPE arr2[10] = {0};
383a11
 TYPE *p1 = &arr1[0];
383a11
 TYPE *p2 = &arr2[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   MEMCCPY (p1, p2, -1, count);
383a11
diff -Nrup a/testsuite/memstomp.nooverlap/memcpy.c b/testsuite/memstomp.nooverlap/memcpy.c
383a11
--- a/testsuite/memstomp.nooverlap/memcpy.c	2015-05-26 19:20:36.001837645 -0600
383a11
+++ b/testsuite/memstomp.nooverlap/memcpy.c	2015-05-26 19:21:19.082900022 -0600
383a11
@@ -12,6 +12,8 @@ TYPE arr2[10] = {0};
383a11
 TYPE *p1 = &arr1[0];
383a11
 TYPE *p2 = &arr2[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   MEMCPY (p1, p2, count);
383a11
diff -Nrup a/testsuite/memstomp.nooverlap/strcpy.c b/testsuite/memstomp.nooverlap/strcpy.c
383a11
--- a/testsuite/memstomp.nooverlap/strcpy.c	2015-05-26 19:20:36.001837645 -0600
383a11
+++ b/testsuite/memstomp.nooverlap/strcpy.c	2015-05-26 19:21:50.617213704 -0600
383a11
@@ -11,6 +11,8 @@ char arr1[32] = "this is a test";
383a11
 char arr2[32] = "this is a test";
383a11
 char *p1 = &arr1[0];
383a11
 char *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   STRCPY (p2, p1);
383a11
diff -Nrup a/testsuite/memstomp.nooverlap/strncpy.c b/testsuite/memstomp.nooverlap/strncpy.c
383a11
--- a/testsuite/memstomp.nooverlap/strncpy.c	2015-05-26 19:20:36.001837645 -0600
383a11
+++ b/testsuite/memstomp.nooverlap/strncpy.c	2015-05-26 19:21:54.929119859 -0600
383a11
@@ -11,6 +11,8 @@ char arr1[32] = "this is a test";
383a11
 char arr2[32] = "this is a test";
383a11
 char *p1 = &arr1[0];
383a11
 char *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   STRNCPY (p1, p2, strlen (p2));
383a11
diff -Nrup a/testsuite/memstomp.nooverlap/wcscpy.c b/testsuite/memstomp.nooverlap/wcscpy.c
383a11
--- a/testsuite/memstomp.nooverlap/wcscpy.c	2015-05-26 19:20:36.002837623 -0600
383a11
+++ b/testsuite/memstomp.nooverlap/wcscpy.c	2015-05-26 19:21:58.928032826 -0600
383a11
@@ -11,6 +11,8 @@ wchar_t arr1[32] = L"this is a test";
383a11
 wchar_t arr2[32] = L"this is a test";
383a11
 wchar_t *p1 = &arr1[0];
383a11
 wchar_t *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   WCSCPY (p1, p2);
383a11
diff -Nrup a/testsuite/memstomp.nooverlap/wcsncpy.c b/testsuite/memstomp.nooverlap/wcsncpy.c
383a11
--- a/testsuite/memstomp.nooverlap/wcsncpy.c	2015-05-26 19:20:36.002837623 -0600
383a11
+++ b/testsuite/memstomp.nooverlap/wcsncpy.c	2015-05-26 19:22:03.184940178 -0600
383a11
@@ -11,6 +11,8 @@ wchar_t arr1[32] = L"this is a test";
383a11
 wchar_t arr2[32] = L"this is a test";
383a11
 wchar_t *p1 = &arr1[0];
383a11
 wchar_t *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   WCSNCPY (p1, p2, wcslen (p2));
383a11
diff -Nrup a/testsuite/memstomp.null/memccpy.c b/testsuite/memstomp.null/memccpy.c
383a11
--- a/testsuite/memstomp.null/memccpy.c	2015-05-26 19:20:36.010837449 -0600
383a11
+++ b/testsuite/memstomp.null/memccpy.c	2015-05-26 19:22:08.530823830 -0600
383a11
@@ -12,6 +12,8 @@ TYPE arr2[10] = {0};
383a11
 TYPE *p1 = &arr1[0];
383a11
 TYPE *p2 = &arr2[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   MEMCCPY (NULL, NULL, -1, 0);
383a11
diff -Nrup a/testsuite/memstomp.null/memcpy.c b/testsuite/memstomp.null/memcpy.c
383a11
--- a/testsuite/memstomp.null/memcpy.c	2015-05-26 19:20:36.011837427 -0600
383a11
+++ b/testsuite/memstomp.null/memcpy.c	2015-05-26 19:22:13.504715577 -0600
383a11
@@ -12,6 +12,8 @@ TYPE arr2[10] = {0};
383a11
 TYPE *p1 = &arr1[0];
383a11
 TYPE *p2 = &arr2[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   return MEMCPY (NULL, NULL, 0) == 0 ;
383a11
diff -Nrup a/testsuite/memstomp.null/memmem.c b/testsuite/memstomp.null/memmem.c
383a11
--- a/testsuite/memstomp.null/memmem.c	2015-05-26 19:20:36.011837427 -0600
383a11
+++ b/testsuite/memstomp.null/memmem.c	2015-05-26 19:22:16.232656205 -0600
383a11
@@ -12,6 +12,8 @@ TYPE arr2[10] = {0};
383a11
 TYPE *p1 = &arr1[0];
383a11
 TYPE *p2 = &arr2[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   return MEMMEM (NULL, 0, NULL, 0) == 0 ;
383a11
diff -Nrup a/testsuite/memstomp.null/memset.c b/testsuite/memstomp.null/memset.c
383a11
--- a/testsuite/memstomp.null/memset.c	2015-05-26 19:20:36.011837427 -0600
383a11
+++ b/testsuite/memstomp.null/memset.c	2015-05-26 19:22:22.800513262 -0600
383a11
@@ -12,6 +12,8 @@ TYPE arr2[10] = {0};
383a11
 TYPE *p1 = &arr1[0];
383a11
 TYPE *p2 = &arr2[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   return MEMSET (NULL, -1, 0) == 0;
383a11
diff -Nrup a/testsuite/memstomp.null/rawmemchr.c b/testsuite/memstomp.null/rawmemchr.c
383a11
--- a/testsuite/memstomp.null/rawmemchr.c	2015-05-26 19:20:36.011837427 -0600
383a11
+++ b/testsuite/memstomp.null/rawmemchr.c	2015-05-26 19:22:25.857446730 -0600
383a11
@@ -12,6 +12,8 @@ TYPE arr2[10] = {0};
383a11
 TYPE *p1 = &arr1[0];
383a11
 TYPE *p2 = &arr2[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   return RAWMEMCHR (NULL, 0) == 0;
383a11
diff -Nrup a/testsuite/memstomp.null/strcmp.c b/testsuite/memstomp.null/strcmp.c
383a11
--- a/testsuite/memstomp.null/strcmp.c	2015-05-26 19:20:36.012837405 -0600
383a11
+++ b/testsuite/memstomp.null/strcmp.c	2015-05-26 19:22:37.049203151 -0600
383a11
@@ -11,6 +11,8 @@ char arr1[32] = "this is a test";
383a11
 char arr2[32] = "this is a test";
383a11
 char *p1 = &arr1[0];
383a11
 char *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   return STRCMP (NULL, NULL) == 0;
383a11
diff -Nrup a/testsuite/memstomp.null/strcoll_l.c b/testsuite/memstomp.null/strcoll_l.c
383a11
--- a/testsuite/memstomp.null/strcoll_l.c	2015-05-26 19:20:36.012837405 -0600
383a11
+++ b/testsuite/memstomp.null/strcoll_l.c	2015-05-26 19:22:41.097115051 -0600
383a11
@@ -11,6 +11,8 @@ char arr1[32] = "this is a test";
383a11
 char arr2[32] = "this is a test";
383a11
 char *p1 = &arr1[0];
383a11
 char *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   return STRCMP (NULL, NULL, NULL);
383a11
diff -Nrup a/testsuite/memstomp.null/strcpy.c b/testsuite/memstomp.null/strcpy.c
383a11
--- a/testsuite/memstomp.null/strcpy.c	2015-05-26 19:20:36.012837405 -0600
383a11
+++ b/testsuite/memstomp.null/strcpy.c	2015-05-26 19:22:44.695036746 -0600
383a11
@@ -11,6 +11,8 @@ char arr1[32] = "this is a test";
383a11
 char arr2[32] = "this is a test";
383a11
 char *p1 = &arr1[0];
383a11
 char *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   STRCPY (NULL, NULL);
383a11
diff -Nrup a/testsuite/memstomp.null/strlen.c b/testsuite/memstomp.null/strlen.c
383a11
--- a/testsuite/memstomp.null/strlen.c	2015-05-26 19:20:36.012837405 -0600
383a11
+++ b/testsuite/memstomp.null/strlen.c	2015-05-26 19:22:49.456933107 -0600
383a11
@@ -11,6 +11,8 @@ char arr1[32] = "this is a test";
383a11
 char arr2[32] = "this is a test";
383a11
 char *p1 = &arr1[0];
383a11
 char *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   return STRLEN (NULL) == 0;
383a11
diff -Nrup a/testsuite/memstomp.null/strncmp.c b/testsuite/memstomp.null/strncmp.c
383a11
--- a/testsuite/memstomp.null/strncmp.c	2015-05-26 19:20:36.012837405 -0600
383a11
+++ b/testsuite/memstomp.null/strncmp.c	2015-05-26 19:22:53.383847641 -0600
383a11
@@ -11,6 +11,8 @@ char arr1[32] = "this is a test";
383a11
 char arr2[32] = "this is a test";
383a11
 char *p1 = &arr1[0];
383a11
 char *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   return STRNCMP (NULL, NULL, 0);
383a11
diff -Nrup a/testsuite/memstomp.null/strncpy.c b/testsuite/memstomp.null/strncpy.c
383a11
--- a/testsuite/memstomp.null/strncpy.c	2015-05-26 19:20:36.012837405 -0600
383a11
+++ b/testsuite/memstomp.null/strncpy.c	2015-05-26 19:22:56.135787748 -0600
383a11
@@ -11,6 +11,8 @@ char arr1[32] = "this is a test";
383a11
 char arr2[32] = "this is a test";
383a11
 char *p1 = &arr1[0];
383a11
 char *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   STRNCPY (NULL, NULL, 0);
383a11
diff -Nrup a/testsuite/memstomp.null/strtok_r.c b/testsuite/memstomp.null/strtok_r.c
383a11
--- a/testsuite/memstomp.null/strtok_r.c	2015-05-26 19:20:36.013837384 -0600
383a11
+++ b/testsuite/memstomp.null/strtok_r.c	2015-05-26 19:23:04.464606478 -0600
383a11
@@ -12,6 +12,8 @@ TYPE arr2[10] = {0};
383a11
 TYPE *p1 = &arr1[0];
383a11
 TYPE *p2 = &arr2[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   return STRTOK_R (NULL, NULL, NULL) == 0 ;
383a11
diff -Nrup a/testsuite/memstomp.null/strxfrm_l.c b/testsuite/memstomp.null/strxfrm_l.c
383a11
--- a/testsuite/memstomp.null/strxfrm_l.c	2015-05-26 19:20:36.013837384 -0600
383a11
+++ b/testsuite/memstomp.null/strxfrm_l.c	2015-05-26 19:23:10.319479051 -0600
383a11
@@ -11,6 +11,8 @@ char arr1[32] = "this is a test";
383a11
 char arr2[32] = "this is a test";
383a11
 char *p1 = &arr1[0];
383a11
 char *p2 = &arr2[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   return STRCMP (NULL, NULL, 0, NULL);
383a11
diff -Nrup a/testsuite/memstomp.overlap/memccpy-2.c b/testsuite/memstomp.overlap/memccpy-2.c
383a11
--- a/testsuite/memstomp.overlap/memccpy-2.c	2015-05-26 19:20:36.002837623 -0600
383a11
+++ b/testsuite/memstomp.overlap/memccpy-2.c	2015-05-26 19:23:17.583320672 -0600
383a11
@@ -11,6 +11,8 @@ TYPE arr[10] = {0};
383a11
 TYPE *p1 = &arr[0];
383a11
 TYPE *p2 = &arr[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   MEMCCPY (p2, p1, -1, count);
383a11
diff -Nrup a/testsuite/memstomp.overlap/memccpy.c b/testsuite/memstomp.overlap/memccpy.c
383a11
--- a/testsuite/memstomp.overlap/memccpy.c	2015-05-26 19:20:36.002837623 -0600
383a11
+++ b/testsuite/memstomp.overlap/memccpy.c	2015-05-26 19:23:20.623254323 -0600
383a11
@@ -11,6 +11,8 @@ TYPE arr[10] = {0};
383a11
 TYPE *p1 = &arr[0];
383a11
 TYPE *p2 = &arr[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   MEMCCPY (p1, p2, -1, count);
383a11
diff -Nrup a/testsuite/memstomp.overlap/memcpy-2.c b/testsuite/memstomp.overlap/memcpy-2.c
383a11
--- a/testsuite/memstomp.overlap/memcpy-2.c	2015-05-26 19:20:36.002837623 -0600
383a11
+++ b/testsuite/memstomp.overlap/memcpy-2.c	2015-05-26 19:23:23.823184481 -0600
383a11
@@ -11,6 +11,8 @@ TYPE arr[10] = {0};
383a11
 TYPE *p1 = &arr[0];
383a11
 TYPE *p2 = &arr[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   MEMCPY (p2, p1, count);
383a11
diff -Nrup a/testsuite/memstomp.overlap/memcpy.c b/testsuite/memstomp.overlap/memcpy.c
383a11
--- a/testsuite/memstomp.overlap/memcpy.c	2015-05-26 19:20:36.002837623 -0600
383a11
+++ b/testsuite/memstomp.overlap/memcpy.c	2015-05-26 19:23:26.559124767 -0600
383a11
@@ -11,6 +11,8 @@ TYPE arr[10] = {0};
383a11
 TYPE *p1 = &arr[0];
383a11
 TYPE *p2 = &arr[1];
383a11
 size_t count = 9;
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   MEMCPY (p1, p2, count);
383a11
diff -Nrup a/testsuite/memstomp.overlap/strcpy-2.c b/testsuite/memstomp.overlap/strcpy-2.c
383a11
--- a/testsuite/memstomp.overlap/strcpy-2.c	2015-05-26 19:20:36.003837601 -0600
383a11
+++ b/testsuite/memstomp.overlap/strcpy-2.c	2015-05-26 19:23:37.055895666 -0600
383a11
@@ -10,6 +10,8 @@
383a11
 char arr[32] = "this is a test";
383a11
 char *p1 = &arr[0];
383a11
 char *p2 = &arr[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   STRCPY (p1, p2);
383a11
diff -Nrup a/testsuite/memstomp.overlap/strcpy.c b/testsuite/memstomp.overlap/strcpy.c
383a11
--- a/testsuite/memstomp.overlap/strcpy.c	2015-05-26 19:20:36.003837601 -0600
383a11
+++ b/testsuite/memstomp.overlap/strcpy.c	2015-05-26 19:23:40.231826349 -0600
383a11
@@ -10,6 +10,8 @@
383a11
 char arr[32] = "this is a test";
383a11
 char *p1 = &arr[0];
383a11
 char *p2 = &arr[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   STRCPY (p2, p1);
383a11
diff -Nrup a/testsuite/memstomp.overlap/strncpy-2.c b/testsuite/memstomp.overlap/strncpy-2.c
383a11
--- a/testsuite/memstomp.overlap/strncpy-2.c	2015-05-26 19:20:36.003837601 -0600
383a11
+++ b/testsuite/memstomp.overlap/strncpy-2.c	2015-05-26 19:23:45.158718815 -0600
383a11
@@ -10,6 +10,8 @@
383a11
 char arr[32] = "this is a test";
383a11
 char *p1 = &arr[0];
383a11
 char *p2 = &arr[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   STRNCPY (p2, p1, strlen (p1));
383a11
diff -Nrup a/testsuite/memstomp.overlap/strncpy.c b/testsuite/memstomp.overlap/strncpy.c
383a11
--- a/testsuite/memstomp.overlap/strncpy.c	2015-05-26 19:20:36.003837601 -0600
383a11
+++ b/testsuite/memstomp.overlap/strncpy.c	2015-05-26 19:23:48.311650000 -0600
383a11
@@ -10,6 +10,8 @@
383a11
 char arr[32] = "this is a test";
383a11
 char *p1 = &arr[0];
383a11
 char *p2 = &arr[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   STRNCPY (p1, p2, strlen (p2));
383a11
diff -Nrup a/testsuite/memstomp.overlap/wcscpy-2.c b/testsuite/memstomp.overlap/wcscpy-2.c
383a11
--- a/testsuite/memstomp.overlap/wcscpy-2.c	2015-05-26 19:20:36.003837601 -0600
383a11
+++ b/testsuite/memstomp.overlap/wcscpy-2.c	2015-05-26 19:23:53.167544016 -0600
383a11
@@ -10,6 +10,8 @@
383a11
 wchar_t arr[32] = L"this is a test";
383a11
 wchar_t *p1 = &arr[0];
383a11
 wchar_t *p2 = &arr[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   WCSCPY (p2, p1);
383a11
diff -Nrup a/testsuite/memstomp.overlap/wcscpy.c b/testsuite/memstomp.overlap/wcscpy.c
383a11
--- a/testsuite/memstomp.overlap/wcscpy.c	2015-05-26 19:20:36.003837601 -0600
383a11
+++ b/testsuite/memstomp.overlap/wcscpy.c	2015-05-26 19:23:56.070480657 -0600
383a11
@@ -10,6 +10,8 @@
383a11
 wchar_t arr[32] = L"this is a test";
383a11
 wchar_t *p1 = &arr[0];
383a11
 wchar_t *p2 = &arr[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   WCSCPY (p1, p2);
383a11
diff -Nrup a/testsuite/memstomp.overlap/wcsncpy-2.c b/testsuite/memstomp.overlap/wcsncpy-2.c
383a11
--- a/testsuite/memstomp.overlap/wcsncpy-2.c	2015-05-26 19:20:36.003837601 -0600
383a11
+++ b/testsuite/memstomp.overlap/wcsncpy-2.c	2015-05-26 19:24:00.279388794 -0600
383a11
@@ -10,6 +10,8 @@
383a11
 wchar_t arr[32] = L"this is a test";
383a11
 wchar_t *p1 = &arr[0];
383a11
 wchar_t *p2 = &arr[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   WCSNCPY (p2, p1, wcslen (p2));
383a11
diff -Nrup a/testsuite/memstomp.overlap/wcsncpy.c b/testsuite/memstomp.overlap/wcsncpy.c
383a11
--- a/testsuite/memstomp.overlap/wcsncpy.c	2015-05-26 19:20:36.003837601 -0600
383a11
+++ b/testsuite/memstomp.overlap/wcsncpy.c	2015-05-26 19:24:03.222324562 -0600
383a11
@@ -10,6 +10,8 @@
383a11
 wchar_t arr[32] = L"this is a test";
383a11
 wchar_t *p1 = &arr[0];
383a11
 wchar_t *p2 = &arr[1];
383a11
+
383a11
+int
383a11
 main ()
383a11
 {
383a11
   WCSNCPY (p1, p2, wcslen (p2));