summaryrefslogtreecommitdiff
path: root/scanf
diff options
context:
space:
mode:
Diffstat (limited to 'scanf')
-rw-r--r--scanf/fscanffuns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/scanf/fscanffuns.c b/scanf/fscanffuns.c
index a71a9ee11..236aec663 100644
--- a/scanf/fscanffuns.c
+++ b/scanf/fscanffuns.c
@@ -28,13 +28,13 @@ along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
/* SunOS 4 stdio.h doesn't provide prototypes for these */
#if ! HAVE_DECL_FGETC
-int fgetc _PROTO ((FILE *fp));
+int fgetc __GMP_PROTO ((FILE *fp));
#endif
#if ! HAVE_DECL_FSCANF
-int fscanf _PROTO ((FILE *fp, const char *fmt, ...));
+int fscanf __GMP_PROTO ((FILE *fp, const char *fmt, ...));
#endif
#if ! HAVE_DECL_UNGETC
-int ungetc _PROTO ((int c, FILE *fp));
+int ungetc __GMP_PROTO ((int c, FILE *fp));
#endif