Add checks for various obsolete types

This commit is contained in:
Christophe de Dinechin 2018-11-17 11:45:16 +01:00
parent 9b4098a604
commit 20cf6ace00
6 changed files with 42 additions and 0 deletions

5
config/check_int64.c Normal file
View File

@ -0,0 +1,5 @@
int main()
{
__int64 x = 0;
return (int) x;
}

5
config/check_longlong.c Normal file
View File

@ -0,0 +1,5 @@
int main()
{
long long x = 0;
return (int) x;
}

8
config/check_uchar.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdlib.h>
#include <stdint.h>
int main()
{
uchar x = 0;
return x;
}

8
config/check_uint.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdlib.h>
#include <stdint.h>
int main()
{
uint x = 0;
return x;
}

8
config/check_ulong.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdlib.h>
#include <stdint.h>
int main()
{
ulong x = 0;
return x;
}

8
config/check_ushort.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdlib.h>
#include <stdint.h>
int main()
{
ushort x = 0;
return x;
}