On Fri, 2015-01-02 at 16:29 -0800, Jasper St. Pierre wrote:
> On Fri, Jan 2, 2015 at 4:16 PM, Stefan Salewski <m...@ssalewski.de> wrote:
> 
> > I am working on GTK3 wrappers/bindings for Nim language.
> >
> 
> You sort of answered your own question here :)
> 
> Think about what happens when this #define is active and somebody does
> 

Ah yes, only plain old alias...

#include <stdio.h>
#define foo foo_utf8

int foo()
{
  printf("hello\n");
  return 5;
}

int main()
{
  int i;
  i = foo();
  i = foo_utf8();
  return 0;
}


_______________________________________________
gtk-list mailing list
gtk-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to