summaryrefslogtreecommitdiff
path: root/gmp-h.in
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-10-02 02:39:49 +0200
committerKevin Ryde <user42@zip.com.au>2001-10-02 02:39:49 +0200
commit22f7aaf8b3a539f22731e6b27eb47ad9334ae935 (patch)
tree8e226d5d18a34d5771e95ff1c4d7db07aa3e193b /gmp-h.in
parent618aa90054ae73068bb6755bc6179106c4218079 (diff)
downloadgmp-22f7aaf8b3a539f22731e6b27eb47ad9334ae935.tar.gz
Amend to operator<<
* cxx/Makefile.am, cxx/Makefile.in, cxx/osdoprnti.cc, cxx/osfuns.cc, cxx/osmpf.cc, cxx/osmpq.cc, cxx/osmpz.cc: New files. * gmp-h.in, gmp-impl.h: Prototypes and support.
Diffstat (limited to 'gmp-h.in')
-rw-r--r--gmp-h.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/gmp-h.in b/gmp-h.in
index 03e326dc9..ba3bb3845 100644
--- a/gmp-h.in
+++ b/gmp-h.in
@@ -1975,9 +1975,9 @@ mpn_sub_1 (mp_ptr dst, mp_srcptr src, mp_size_t size, mp_limb_t n)
#ifdef __cplusplus
class ostream;
-ostream& __GMP_DECLSPEC mpz_out_ostream (ostream &o, mpz_srcptr z);
-ostream& __GMP_DECLSPEC mpq_out_ostream (ostream &o, mpq_srcptr q);
-ostream& __GMP_DECLSPEC mpf_out_ostream (ostream &o, mpf_srcptr f);
+ostream& __GMP_DECLSPEC operator<< (ostream &o, mpz_srcptr z);
+ostream& __GMP_DECLSPEC operator<< (ostream &o, mpq_srcptr q);
+ostream& __GMP_DECLSPEC operator<< (ostream &o, mpf_srcptr f);
#endif