> libc may define functions with the same names, but differing in prototype. > --- > Anyone have any comments on this patch before I push it? > > The motivating conflict is with strsep, which glibc declares as > > char *strsep(char **restrict, const char *restrict); > > which is not compatible with the libutil declaration. > > char *strsep(char **, const char *);
x* is not a reserved namespace, nor is strsep. libc is always linked last, so this this won't cause an issue.
