[Asterisk-cvs] asterisk/apps app_skel.c,1.5,1.6

jeremy at lists.digium.com jeremy at lists.digium.com
Fri Nov 14 23:47:59 CST 2003


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv10423

Modified Files:
	app_skel.c 
Log Message:
we only need to include stdlib.h once. Thanks bkw


Index: app_skel.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_skel.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- app_skel.c	11 Nov 2003 07:56:13 -0000	1.5
+++ app_skel.c	15 Nov 2003 06:14:15 -0000	1.6
@@ -19,17 +19,16 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <string.h>
-#include <stdlib.h>
 #include <pthread.h>
 
 static char *tdesc = "Trivial skeleton Application";
 static char *app = "skel";
-static char *synopsis = 
-"  This is a skeleton application that shows you the basic structure to create your\n"
-"own asterisk applications.\n";
+static char *synopsis = 
+"  This is a skeleton application that shows you the basic structure to create your\n"
+"own asterisk applications.\n";
 
 STANDARD_LOCAL_USER;
-
+
 LOCAL_USER_DECL;
 
 static int skel_exec(struct ast_channel *chan, void *data)




More information about the svn-commits mailing list