[svn-commits] qwell: branch 1.4 r87567 - /branches/1.4/main/editline/np/vis.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Oct 30 10:45:36 CDT 2007
Author: qwell
Date: Tue Oct 30 10:45:35 2007
New Revision: 87567
URL: http://svn.digium.com/view/asterisk?view=rev&rev=87567
Log:
Fix build of editline on Solaris.
Issue 11113, patch by snuffy.
Modified:
branches/1.4/main/editline/np/vis.c
Modified: branches/1.4/main/editline/np/vis.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/editline/np/vis.c?view=diff&rev=87567&r1=87566&r2=87567
==============================================================================
--- branches/1.4/main/editline/np/vis.c (original)
+++ branches/1.4/main/editline/np/vis.c Tue Oct 30 10:45:35 2007
@@ -54,7 +54,7 @@
__weak_alias(vis,_vis)
#endif
-#if !HAVE_VIS_H
+#ifndef HAVE_VIS_H
#include <ctype.h>
#include <limits.h>
#include <stdio.h>
@@ -69,7 +69,6 @@
#ifdef SOLARIS
#include <alloca.h>
-typedef unsigned int u_int32_t;
#endif
#define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
More information about the svn-commits
mailing list