Changeset 20 for branches/with_autoconf/src/gen_code.cc
- Timestamp:
- Apr 15, 2009, 8:40:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/with_autoconf/src/gen_code.cc
r10 r20 34 34 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 35 35 */ 36 37 #include <stdio.h> 38 #include <stdlib.h> 36 #if defined(__linux__) 37 #include <linux/limits.h> 38 #elif defined(WIN32) 39 #include <windows.h> 40 #endif 41 #include <cstring> 42 #include <cstdio> 43 #include <cstdlib> 39 44 #include <iostream> 40 45 #include <fstream> … … 267 272 o << "// generated by " << sc_version () << endl 268 273 << "#include <casc.h>\n\n" 269 << "#include < stdio.h>\n\n"274 << "#include <cstdio>\n\n" 270 275 // << "#include <iostream>\n\n" 271 276 << "namespace sc_core {\n" … … 328 333 o << "// generated by " << sc_version () << endl 329 334 << "#include <casc.h>\n\n" 330 << "#include < stdio.h>\n\n"335 << "#include <cstdio>\n\n" 331 336 // << "#include <iostream>\n\n" 332 337 << "namespace sc_core {\n"
Note: See TracChangeset
for help on using the changeset viewer.