Fixed HiFi modes.
[AROS.git] / compiler / purify / test11.c
blob3913c01d405ac5f123c8fde68c0412a247a43d76
1 #include <stdio.h>
2 #include <errno.h>
3 #include <ctype.h>
5 int main (int argc, char ** argv)
7 int c, f;
9 c = 'a';
11 f = isalpha (c);
12 f = tolower (c);
13 f = toupper (c);
15 c = errno;
17 return 0;