even though it's GCC++, thanks man! now back to coding (and cleaning, and laundry... living on your own isn't just fun)B1FF wrote: >Is it possible in C/C++ to create a function with more than one function name?
Code: Select all
typedef unsigned pid_t; int kill(pid_t pid) { return pid; } int killp(pid_t pid) __attribute__((weak, alias("kill")));