diff options
author | DJ Delorie <dj@redhat.com> | 2000-08-01 20:51:51 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2000-08-01 20:51:51 +0000 |
commit | 749d9bcd4b38c921930a9ce51bea2a8df0edf940 (patch) | |
tree | 3210c1e750155e4d311738444a7171ae8b276aad /newlib/libc/include/unctrl.h | |
parent | deb2b467e949bc9a2ba4d06436f43531bd9827a8 (diff) | |
download | cygnal-749d9bcd4b38c921930a9ce51bea2a8df0edf940.tar.gz cygnal-749d9bcd4b38c921930a9ce51bea2a8df0edf940.tar.bz2 cygnal-749d9bcd4b38c921930a9ce51bea2a8df0edf940.zip |
* libc/include/sys/config.h: define __IMPORT appropriately
* libc/include/ctype.h (_ctype_): use __IMPORT
* libc/include/math.h (__infinity, signam, _LIB_VERSION): ditto
* libc/include/math.h (__mb_cur_max): ditto
* libc/include/time.h (_timezone, _daylight, _tzname): ditto
* libc/include/unctrl.h (__unctrl, __unctrllen): ditto
* libc/include/errno.h (_sys_errlist, _sys_nerr): ditto
* libc/include/unistd.h (environ): ditto
Diffstat (limited to 'newlib/libc/include/unctrl.h')
-rw-r--r-- | newlib/libc/include/unctrl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/include/unctrl.h b/newlib/libc/include/unctrl.h index 8205ea60e..004075232 100644 --- a/newlib/libc/include/unctrl.h +++ b/newlib/libc/include/unctrl.h @@ -40,7 +40,7 @@ #define unctrl(c) __unctrl[(c) & 0xff] #define unctrllen(ch) __unctrllen[(ch) & 0xff] -extern _CONST char * _CONST __unctrl[256]; /* Control strings. */ -extern _CONST char __unctrllen[256]; /* Control strings length. */ +extern __IMPORT _CONST char * _CONST __unctrl[256]; /* Control strings. */ +extern __IMPORT _CONST char __unctrllen[256]; /* Control strings length. */ #endif /* _UNCTRL_H_ */ |