diff src/utils.h @ 11512:e4e82740e9cd

prototype fixes for C language files
author John W. Eaton <jwe@octave.org>
date Thu, 13 Jan 2011 07:23:36 -0500
parents f3b65e1ae355
children fd0a3ac60b0e
line wrap: on
line diff
--- a/src/utils.h	Thu Jan 13 07:21:46 2011 -0500
+++ b/src/utils.h	Thu Jan 13 07:23:36 2011 -0500
@@ -33,6 +33,8 @@
 #include "dMatrix.h"
 #include "lo-utils.h"
 
+#include "cutils.h"
+
 class octave_value;
 class octave_value_list;
 class string_vector;
@@ -119,13 +121,6 @@
 
 extern OCTINTERP_API void octave_sleep (double seconds);
 
-extern "C" OCTINTERP_API void octave_sleep (unsigned int seconds);
-
-extern "C" OCTINTERP_API void octave_usleep (unsigned int useconds);
-
-extern "C" OCTINTERP_API int
-octave_raw_vsnprintf (char *buf, size_t n, const char *fmt, va_list args);
-
 extern OCTINTERP_API
 octave_value_list
 do_simple_cellfun (octave_value_list (*fun) (const octave_value_list&, int),
@@ -136,4 +131,5 @@
 octave_value
 do_simple_cellfun (octave_value_list (*fun) (const octave_value_list&, int),
                    const char *fun_name, const octave_value_list& args);
+
 #endif