tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Tinycc-devel] simple #ifdef causes "error: function pointer expected"


From: Massimo Sala
Subject: [Tinycc-devel] simple #ifdef causes "error: function pointer expected"
Date: Thu, 21 May 2020 13:38:34 +0200

Hi

Compiling the attached sample, tcc bails out with "error: function pointer expected"
Pls, how can I fix ?
Best regards, Massimo

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main()
{
printf("ciao\n");
#if sizeof(size_t) == 64
printf("big boss\n");
#endif
return 0;
}


reply via email to

[Prev in Thread] Current Thread [Next in Thread]