Fix test so it works on systems where wchar_t != int.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75827 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dale Johannesen 2009-07-15 20:40:53 +00:00
parent f0a5ec0934
commit cf20031f60

View File

@ -1,15 +1,7 @@
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
typedef int __darwin_wchar_t;
typedef __darwin_wchar_t wchar_t;
typedef signed short SQLSMALLINT;
typedef SQLSMALLINT SQLRETURN;
typedef enum
{
en_sqlstat_total
}
sqlerrmsg_t;
SQLRETURN _iodbcdm_sqlerror( )
#include <stddef.h>
signed short _iodbcdm_sqlerror( )
{
wchar_t _sqlState[6] = { L"\0" };
}