blob: f98e990c3311383befbe57c6f896d60d6398684b [file] [log] [blame]
Kai Tietzfb59d4e2009-01-27 10:33:31 +00001/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-runtime package.
Kai Tietzfa0cfe32010-01-15 20:02:21 +00004 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
Kai Tietzfb59d4e2009-01-27 10:33:31 +00005 */
6
Kai Tietz518dd332007-08-10 09:54:15 +00007#include <ctype.h>
8#undef iscsym
Kai Tietz31719562009-08-23 08:17:27 +00009
10int iscsym (int);
11
Kai Tietz518dd332007-08-10 09:54:15 +000012int
13iscsym (int c)
14{
15 return __iscsym(c);
16}