Skip to content
Snippets Groups Projects
Commit 3d6427e0 authored by Michael Tüxen's avatar Michael Tüxen
Browse files

Allow ENOTCONN (Socket is not connected) as a syscall result.

parent 49665061
No related branches found
No related tags found
No related merge requests found
...@@ -5915,6 +5915,7 @@ note ...@@ -5915,6 +5915,7 @@ note
word_list word_list
: WORD { $$ = $1; } : WORD { $$ = $1; }
| word_list WORD { asprintf(&($$), "%s %s", $1, $2); free($1); free($2); } | word_list WORD { asprintf(&($$), "%s %s", $1, $2); free($1); free($2); }
| word_list IS { asprintf(&($$), "%s is", $1); free($1); }
; ;
command_spec command_spec
......
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