From 5854f2d95623bfc83c30b94f90f1716f1c99f103 Mon Sep 17 00:00:00 2001 From: Jim Warner Date: Thu, 28 Apr 2016 00:00:00 -0500 Subject: [PATCH] library: remove an obsolete 'jiffs' typedef in sysinfo During work on the new interface the typedef of jiffs was eliminated along with the clang warning. The exact same warning in sysinfo.h now goes bye-bye also. Reference(s): ./proc/sysinfo.h:16:28: warning: redefinition of typedef 'jiff' is a C11 feature [-Wtypedef-redefinition] typedef unsigned long long jiff; Signed-off-by: Jim Warner --- proc/sysinfo.h | 1 - 1 file changed, 1 deletion(-) diff --git a/proc/sysinfo.h b/proc/sysinfo.h index 75730686..388753a2 100644 --- a/proc/sysinfo.h +++ b/proc/sysinfo.h @@ -14,7 +14,6 @@ int procps_loadavg(double *av1, double *av5, double *av15); unsigned int procps_pid_length(void); #define BUFFSIZE (64*1024) -typedef unsigned long long jiff; typedef struct slab_cache{ char name[48];