components/tmux/patches/server-client.c.patch
changeset 3717 b16a04ab5d50
parent 3716 a2629a2cf270
child 3718 e20e9cf97325
equal deleted inserted replaced
3716:a2629a2cf270 3717:b16a04ab5d50
     1 In-House patch. Submitted to upstream, but not accepted yet.
       
     2 Added errno.h to remove compile error of defininig extern int errno without including errno.h.
       
     3 
       
     4 --- tmux-1.8/server-client.c.orig	2013-08-13 12:42:15.161702456 -0700
       
     5 +++ tmux-1.8/server-client.c	2013-08-13 12:44:32.917403564 -0700
       
     6 @@ -25,6 +25,7 @@
       
     7  #include <string.h>
       
     8  #include <time.h>
       
     9  #include <unistd.h>
       
    10 +#include <errno.h>
       
    11  
       
    12  #include "tmux.h"
       
    13