01a55f006a
In fixing issues with uid > INT_MAX, I broke the uid without username case. The latter is more important so return the old state. Discussed with: allanjude
27 lines
663 B
C
27 lines
663 B
C
/*
|
|
* $FreeBSD$
|
|
*
|
|
* Top users/processes display for Unix
|
|
*
|
|
* This program may be freely redistributed,
|
|
* but this entire comment MUST remain intact.
|
|
*
|
|
* Copyright (c) 1984, 1989, William LeFebvre, Rice University
|
|
* Copyright (c) 1989, 1990, 1992, William LeFebvre, Northwestern University
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
|
|
int atoiwi(const char *);
|
|
char *itoa(unsigned int);
|
|
char *itoa7(int);
|
|
int digits(int);
|
|
char **argparse(char *, int *);
|
|
long percentages(int, int *, long *, long *, long *);
|
|
char *format_time(long);
|
|
char *format_k(int);
|
|
char *format_k2(unsigned long long);
|
|
int string_index(const char *string, char *array[]);
|
|
int find_pid(pid_t pid);
|
|
|