comparison src/utils.cc @ 3622:52594f1c37b6

[project @ 2000-03-23 06:20:06 by jwe]
author jwe
date Thu, 23 Mar 2000 06:20:06 +0000
parents 7c686802265f
children 08fe5f74c7d4
comparison
equal deleted inserted replaced
3621:7c686802265f 3622:52594f1c37b6
673 else 673 else
674 check_dimensions (nr, nc, warn_for); // May set error_state. 674 check_dimensions (nr, nc, warn_for); // May set error_state.
675 } 675 }
676 676
677 extern int 677 extern int
678 octave_format (ostream& os, const char *fmt, ...) 678 octave_format (std::ostream& os, const char *fmt, ...)
679 { 679 {
680 int retval = -1; 680 int retval = -1;
681 681
682 va_list args; 682 va_list args;
683 va_start (args, fmt); 683 va_start (args, fmt);
688 688
689 return retval; 689 return retval;
690 } 690 }
691 691
692 extern int 692 extern int
693 octave_vformat (ostream& os, const char *fmt, va_list args) 693 octave_vformat (std::ostream& os, const char *fmt, va_list args)
694 { 694 {
695 int retval = -1; 695 int retval = -1;
696 696
697 #if defined (__GNUG__) 697 #if defined (__GNUG__)
698 698