From: Juergen Gross Date: Mon, 27 Nov 2023 10:25:02 +0000 (+0100) Subject: Mini-OS: add EXPORT_SYMBOL() instances to lib/ctype.c X-Git-Tag: xen-4.19.0-rc4~32 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d572fac23e754a96ec4c3a36f3db165474e76176;p=mini-os.git Mini-OS: add EXPORT_SYMBOL() instances to lib/ctype.c Add the needed instances of EXPORT_SYMBOL() to lib/ctype.c. Signed-off-by: Juergen Gross Reviewed-by: Samuel Thibault --- diff --git a/lib/ctype.c b/lib/ctype.c index 3f3bdb0..309ebbc 100644 --- a/lib/ctype.c +++ b/lib/ctype.c @@ -1,5 +1,6 @@ #ifndef HAVE_LIBC #include +#include unsigned char _ctype[] = { _C,_C,_C,_C,_C,_C,_C,_C, /* 0-7 */ @@ -26,4 +27,5 @@ _U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U, /* 192-207 */ _U,_U,_U,_U,_U,_U,_U,_P,_U,_U,_U,_U,_U,_U,_U,_L, /* 208-223 */ _L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L, /* 224-239 */ _L,_L,_L,_L,_L,_L,_L,_P,_L,_L,_L,_L,_L,_L,_L,_L}; /* 240-255 */ +EXPORT_SYMBOL(_ctype); #endif