search for: 1e2641c

Displaying 1 result from an estimated 1 matches for "1e2641c".

Did you mean: 132641
2017 Jan 26
1
[PATCH] Use srandom (time (NULL) + getpid ()) throughout.
...which helps in some tests. --- edit/edit.c | 3 ++- fish/fish.c | 2 +- tests/mount-local/test-parallel-mount-local.c | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/edit/edit.c b/edit/edit.c index 2f986a3..1e2641c 100644 --- a/edit/edit.c +++ b/edit/edit.c @@ -29,6 +29,7 @@ #include <error.h> #include <assert.h> #include <libintl.h> +#include <sys/types.h> #include <sys/time.h> #include <sys/stat.h> #include <utime.h> @@ -103,7 +104,7 @@ main (int argc, char *a...