components/tmux/patches/server-client.c.patch
branchs11-update
changeset 2787 f6f36f8682b5
equal deleted inserted replaced
2786:78b671af7080 2787:f6f36f8682b5
       
     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