Skip to content
Snippets Groups Projects
Commit 0412a201 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

undef accept before defining it, since AIX 5.2 has it as a define!

parent ca522d47
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,7 @@ int curl_fclose(FILE *file, int line, const char *source);
#define socket(domain,type,protocol)\
curl_socket(domain,type,protocol,__LINE__,__FILE__)
#undef accept /* for those with accept as a macro */
#define accept(sock,addr,len)\
curl_accept(sock,addr,len,__LINE__,__FILE__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment