This is the mail archive of the gdb-patches@sourceware.cygnus.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: FYI: strdup() -> xstrdup()



> Strdup is a standard function,

It's neither ANSI nor POSIX.1(1990).  Is it finally in some other
spec?

> and a year from now somebody will forget about xstrdup and use the
> standard function instead.

#define strdup dont_use_strdup__use_xstrdup_instead

...

#undef strdup
strdup()
{
  dont_use_strdup__use_xstrdup_instead();
}

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]