summaryrefslogtreecommitdiff
path: root/scanf
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2012-03-03 15:40:45 +0100
committerTorbjorn Granlund <tege@gmplib.org>2012-03-03 15:40:45 +0100
commitb2629475d8f5f11c3c588046384f2e9c1f34e0a9 (patch)
treef1d4cc926369aba8115e8b82444c59e49df958bb /scanf
parenta709379e498a3aa2184a4e7eea00ac49866fbd85 (diff)
downloadgmp-b2629475d8f5f11c3c588046384f2e9c1f34e0a9.tar.gz
Clean out __GMP_PROTO.
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 236aec663..74590232d 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 __GMP_PROTO ((FILE *fp));
+int fgetc (FILE *);
#endif
#if ! HAVE_DECL_FSCANF
-int fscanf __GMP_PROTO ((FILE *fp, const char *fmt, ...));
+int fscanf (FILE *, const char *, ...);
#endif
#if ! HAVE_DECL_UNGETC
-int ungetc __GMP_PROTO ((int c, FILE *fp));
+int ungetc (int, FILE *);
#endif