]> git.saurik.com Git - apple/shell_cmds.git/blobdiff - w/extern.h
shell_cmds-162.tar.gz
[apple/shell_cmds.git] / w / extern.h
index 7562e033a4a5bbff0381eeee9bfaee1da20369ec..8fe24bb457f02b0720c013d776da2043932cb9a9 100644 (file)
@@ -1,5 +1,3 @@
-/*     $NetBSD: extern.h,v 1.3 1996/06/07 01:39:16 thorpej Exp $       */
-
 /*-
  * Copyright (c) 1993
  *     The Regents of the University of California.  All rights reserved.
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
  * SUCH DAMAGE.
  *
  *     @(#)extern.h    8.1 (Berkeley) 6/6/93
+ * $FreeBSD: src/usr.bin/w/extern.h,v 1.5 2002/03/22 01:42:43 imp Exp $
  */
 
-struct proc;
-void   fmt_puts __P((char *, int *));
-void   fmt_putc __P((int, int *));
-void   pr_attime __P((time_t *, time_t *));
-void   pr_idle __P((time_t));
-int    proc_compare __P((struct proc *, struct proc *));
+
+extern int use_ampm;
+
+struct kinfo_proc;
+
+#ifdef __APPLE__
+#define KI_PROC(ki) (&(ki)->kp->kp_proc)
+#endif
+
+void   pr_attime(time_t *, time_t *);
+int    pr_idle(time_t);
+int    proc_compare(struct kinfo_proc *, struct kinfo_proc *);