diff options
author | jofret | 2010-07-26 07:41:15 +0000 |
---|---|---|
committer | jofret | 2010-07-26 07:41:15 +0000 |
commit | c116469164bf1939674b05fde84fcef625cb0c85 (patch) | |
tree | f68cfda54d667668e885286c3c2d9f90bf8af1b9 /macros | |
parent | ebe5ae1f3471535ff7a7d5fdf4d5489267f48690 (diff) | |
download | scilab2c-c116469164bf1939674b05fde84fcef625cb0c85.tar.gz scilab2c-c116469164bf1939674b05fde84fcef625cb0c85.tar.bz2 scilab2c-c116469164bf1939674b05fde84fcef625cb0c85.zip |
Move SCI2CInt -> int
Diffstat (limited to 'macros')
-rw-r--r-- | macros/CCodeGeneration/C_Type.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/CCodeGeneration/C_Type.sci b/macros/CCodeGeneration/C_Type.sci index 5fc94f98..21d83a7d 100644 --- a/macros/CCodeGeneration/C_Type.sci +++ b/macros/CCodeGeneration/C_Type.sci @@ -30,7 +30,7 @@ elseif (ArgType == 'c') elseif (ArgType == 'z') OutC_Type = 'doubleComplex'; elseif (ArgType == 'i') - OutC_Type = 'SCI2Cint'; + OutC_Type = 'int'; elseif (ArgType == 'g') OutC_Type = 'char'; elseif (ArgType == 'f') |