summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjofret2009-05-14 14:49:58 +0000
committerjofret2009-05-14 14:49:58 +0000
commit66866c889eb76ed8dd1afb9e079436c9ffbb0f96 (patch)
tree4d578db0bf1c0803fcf7d047844cfe4d6c908a35 /src
parent7983b497bf61cb932c0643e3df08d6eeb48e3fb2 (diff)
downloadscilab2c-66866c889eb76ed8dd1afb9e079436c9ffbb0f96.tar.gz
scilab2c-66866c889eb76ed8dd1afb9e079436c9ffbb0f96.tar.bz2
scilab2c-66866c889eb76ed8dd1afb9e079436c9ffbb0f96.zip
Display simple strings
Diffstat (limited to 'src')
-rw-r--r--src/c/string/interfaces/int_disp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/c/string/interfaces/int_disp.h b/src/c/string/interfaces/int_disp.h
index e77dbace..60e9856b 100644
--- a/src/c/string/interfaces/int_disp.h
+++ b/src/c/string/interfaces/int_disp.h
@@ -1,11 +1,11 @@
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2008-2008 - INRIA - Bruno JOFRET
- *
+ *
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
- * are also available at
+ * are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
*
*/
@@ -15,6 +15,7 @@
#ifndef __INT_DISP_H__
#define __INT_DISP_H__
+#include <stdio.h>
#define s0dispd0(in) sdisps(in)
@@ -32,6 +33,7 @@
#define z2dispd0(in,size) zdispa(in,size[0],size[1])
+#define g2dispd0(in, size) printf("%s\n",in)
#endif /* __INT_DISP_H__ */