summaryrefslogtreecommitdiff
path: root/scanf
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2008-12-07 18:20:46 +0100
committerTorbjorn Granlund <tege@gmplib.org>2008-12-07 18:20:46 +0100
commitc03242552746fbb30331262c4c6b257a83fd4eb4 (patch)
tree1629ad4ed81c74ff3af59d93aeb76000406401ea /scanf
parentbd807c9045ca022b8898c90bc540aba8f08db3b6 (diff)
downloadgmp-c03242552746fbb30331262c4c6b257a83fd4eb4.tar.gz
Change _PROTO => __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 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