[BACK]Return to def.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mail

Diff for /src/usr.bin/mail/def.h between version 1.9 and 1.10

version 1.9, 2001/11/21 15:26:39 version 1.10, 2002/02/16 21:27:48
Line 112 
Line 112 
         char    *c_name;                /* Name of command */          char    *c_name;                /* Name of command */
         union {          union {
                 int     (*c_func0)();                  int     (*c_func0)();
                 int     (*c_func1) __P((void *));                  int     (*c_func1)(void *);
                 int     (*c_func2) __P((void *, void *));                  int     (*c_func2)(void *, void *);
         } cfunc;                        /* Implementor of the command */          } cfunc;                        /* Implementor of the command */
 #define c_func  cfunc.c_func1  #define c_func  cfunc.c_func1
 #define c_func2 cfunc.c_func2  #define c_func2 cfunc.c_func2

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10