]> git.sur5r.net Git - cc65/blob - test/err/void-size2.c
Added a C header that translates from the source file's encoding to PetSCII.
[cc65] / test / err / void-size2.c
1 /*
2   !!DESCRIPTION!! Size of void cast
3   !!ORIGIN!!      cc65 regression tests
4   !!LICENCE!!     Public Domain
5   !!AUTHOR!!      Greg King
6 */
7
8 unsigned test (void)
9 {
10     return sizeof ((void)12345);
11 }