[BACK]Return to autoexec.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mg

Diff for /src/usr.bin/mg/autoexec.c between version 1.15 and 1.16

version 1.15, 2014/10/11 03:03:44 version 1.16, 2015/03/19 21:22:15
Line 2 
Line 2 
 /* this file is in the public domain */  /* this file is in the public domain */
 /* Author: Vincent Labrecque <vincent@openbsd.org>      April 2002 */  /* Author: Vincent Labrecque <vincent@openbsd.org>      April 2002 */
   
   #include <sys/queue.h>
   #include <fnmatch.h>
   #include <signal.h>
   #include <stdio.h>
   #include <stdlib.h>
   #include <string.h>
   
 #include "def.h"  #include "def.h"
 #include "funmap.h"  #include "funmap.h"
   
 #include <fnmatch.h>  
   
 struct autoexec {  struct autoexec {
         SLIST_ENTRY(autoexec) next;     /* link in the linked list */          SLIST_ENTRY(autoexec) next;     /* link in the linked list */

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16