This program stopped working after commit "local scope for types of function parameters"

#include <stdio.h>

int main(void)
{
  char c = 'a';
  void func1(char c);

  func1(c);
  return 0;
}

void func1(char c)
{
    printf("%c\n", c);
}

    Herman

_______________________________________________
Tinycc-devel mailing list
Tinycc-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to