922d218e1e
The devname.h requires readproc.h header which has dev_t. Unless header is included the includes in program files must be in correct order. I also added FIXME item to remind that for uid & gid value int not correct data type but uid_t or gid_t from pwd.h. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
19 lines
453 B
C
19 lines
453 B
C
#ifndef PROC_DEVNAME_H
|
|
#define PROC_DEVNAME_H
|
|
|
|
#include "procps.h"
|
|
#include "readproc.h"
|
|
|
|
EXTERN_C_BEGIN
|
|
|
|
#define ABBREV_DEV 1 /* remove /dev/ */
|
|
#define ABBREV_TTY 2 /* remove tty */
|
|
#define ABBREV_PTS 4 /* remove pts/ */
|
|
|
|
extern unsigned dev_to_tty(char *restrict ret, unsigned chop, dev_t dev_t_dev, int pid, unsigned int flags);
|
|
|
|
extern int tty_to_dev(const char *restrict const name);
|
|
|
|
EXTERN_C_END
|
|
#endif
|