diff options
| author | Glenn Morris | 2014-10-12 15:56:45 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-10-12 15:56:45 -0700 |
| commit | b1d5ab0352b6132eee4feaf9091ce7dc7a3e6a84 (patch) | |
| tree | df2e6708c30f53f071bd824c49c7f00dfbe0ffba /src/process.c | |
| parent | ec11ab9b783fc1f2c0ce858a711baa5f728c238b (diff) | |
| parent | e175fabcdd37f89db13ab90615cf0baa7bade4d9 (diff) | |
| download | emacs-b1d5ab0352b6132eee4feaf9091ce7dc7a3e6a84.tar.gz emacs-b1d5ab0352b6132eee4feaf9091ce7dc7a3e6a84.zip | |
Merge from emacs-24; up to 2014-07-26T11:58:24Z!schwab@linux-m68k.org
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index 0c36f8e18c3..06fc918cf54 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -173,6 +173,9 @@ close_on_exec (int fd) | |||
| 173 | return fd; | 173 | return fd; |
| 174 | } | 174 | } |
| 175 | 175 | ||
| 176 | # undef accept4 | ||
| 177 | # define accept4(sockfd, addr, addrlen, flags) \ | ||
| 178 | process_accept4 (sockfd, addr, addrlen, flags) | ||
| 176 | static int | 179 | static int |
| 177 | accept4 (int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags) | 180 | accept4 (int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags) |
| 178 | { | 181 | { |