From: bernhardheld Date: Wed, 20 Aug 2003 20:37:58 +0000 (+0000) Subject: replaced _pdata by pdata X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=78d061440bb372b63828622bf74f191ff437e58f;p=fw%2Fsdcc replaced _pdata by pdata git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2840 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/device/include/stdarg.h b/device/include/stdarg.h index c421a3bc..7f18a1e0 100644 --- a/device/include/stdarg.h +++ b/device/include/stdarg.h @@ -19,9 +19,9 @@ typedef unsigned char * va_list ; #elif defined(SDCC_USE_XSTACK) -typedef unsigned char _pdata * va_list ; +typedef unsigned char pdata * va_list ; #define va_arg(marker,type) *((type data *)(marker -= sizeof(type))) -#define va_start(marker,first) { marker = (va_list)((char _pdata *)&first); } +#define va_start(marker,first) { marker = (va_list)((char pdata *)&first); } #else