fix the copyright/SCCS notice
[unix-history] / usr / src / bin / sh / jobs.h
index 5b705c2..9b16dbc 100644 (file)
@@ -1,13 +1,13 @@
 /*-
 /*-
- * Copyright (c) 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Kenneth Almquist.
  *
  * %sccs.include.redist.c%
  *
  *
  * This code is derived from software contributed to Berkeley by
  * Kenneth Almquist.
  *
  * %sccs.include.redist.c%
  *
- *     @(#)jobs.h      5.2 (Berkeley) %G%
+ *     @(#)jobs.h      8.1 (Berkeley) %G%
  */
 
 /* Mode argument to forkshell.  Don't change FORK_FG or FORK_BG. */
  */
 
 /* Mode argument to forkshell.  Don't change FORK_FG or FORK_BG. */
@@ -58,12 +58,14 @@ void showjobs(int);
 struct job *makejob(union node *, int);
 int forkshell(struct job *, union node *, int);
 int waitforjob(struct job *);
 struct job *makejob(union node *, int);
 int forkshell(struct job *, union node *, int);
 int waitforjob(struct job *);
+char *commandtext(union node *);
 #else
 void setjobctl();
 void showjobs();
 struct job *makejob();
 int forkshell();
 int waitforjob();
 #else
 void setjobctl();
 void showjobs();
 struct job *makejob();
 int forkshell();
 int waitforjob();
+char *commandtext();
 #endif
 
 #if ! JOBS
 #endif
 
 #if ! JOBS