mirror of
https://gitlab.com/procps-ng/procps.git
synced 2024-11-23 18:14:15 +08:00
0a5b342927
* When cmd took longer than -n to complete, -p is no longer skipping sleeps to make up for the time lost waiting for the completion(s) [BUG]. * Code cleanup, minor optimization. Moved universal routines to strutils/fileutils. Signed-off-by: Craig Small <csmall@dropbear.xyz>
11 lines
166 B
C
11 lines
166 B
C
#ifndef PROCPS_NG_FILEUTILS
|
|
#define PROCPS_NG_FILEUTILS
|
|
|
|
#include <wchar.h>
|
|
|
|
int close_stream(FILE * stream);
|
|
void close_stdout(void);
|
|
wint_t getmb(FILE *f);
|
|
|
|
#endif
|