comparison src/sunOS-fix.c @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 850242ba4a81
children 697ef44129c6
comparison
equal deleted inserted replaced
397:f4aeb21a5bad 398:74fd4e045ea6
34 34
35 #ifdef __STDC__ 35 #ifdef __STDC__
36 36
37 #include <stdlib.h> 37 #include <stdlib.h>
38 38
39 size_t mbstowcs (wchar_t *foo, CONST char *bar, size_t baz) 39 size_t mbstowcs (wchar_t *foo, const char *bar, size_t baz)
40 { 40 {
41 abort (); 41 abort ();
42 return 0; 42 return 0;
43 } 43 }
44 44
45 size_t wcstombs (char *foo, CONST wchar_t *bar, size_t baz) 45 size_t wcstombs (char *foo, const wchar_t *bar, size_t baz)
46 { 46 {
47 abort (); 47 abort ();
48 return 0; 48 return 0;
49 } 49 }
50 50