]> rtime.felk.cvut.cz Git - frescor/fwp.git/blobdiff - fwp/lib/fwp/fwp_utils.c
Removed extraordinary use of inline keyword in functions declarations.
[frescor/fwp.git] / fwp / lib / fwp / fwp_utils.c
index 28ef3abf04ed0693db35db1062e8bc396136c0a1..83f61066e8cec445a7f828de594e83eeb39ffa59 100644 (file)
@@ -54,7 +54,7 @@ const char *ac_to_text[4] = {[AC_VO] = "AC_VO", [AC_VI] = "AC_VI",
                             [AC_BE] = "AC_BE", [AC_BK] = "AC_BK", };
 */
 
-inline void fwp_timespec_add (struct timespec *sum, const struct timespec *left,
+void fwp_timespec_add (struct timespec *sum, const struct timespec *left,
              const struct timespec *right)
 {
        sum->tv_sec = left->tv_sec + right->tv_sec;
@@ -66,7 +66,7 @@ inline void fwp_timespec_add (struct timespec *sum, const struct timespec *left,
        }
 }
 
-inline void fwp_timespec_sub (struct timespec *diff, const struct timespec *left,
+void fwp_timespec_sub (struct timespec *diff, const struct timespec *left,
              const struct timespec *right)
 {
        diff->tv_sec = left->tv_sec - right->tv_sec;