lineedit: do not hang on error, but return error indicator.
[oweals/busybox.git] / libbb / kernel_version.c
index e784a049a7b626bc132621b79ecbd1672ac1cd38..a168a1e4ef2b28dc18b16b70cad36b2f9427f270 100644 (file)
@@ -4,35 +4,33 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <sys/utsname.h>               /* for uname(2) */
-
 #include "libbb.h"
+/* After libbb.h, since it needs sys/types.h on some systems */
+#include <sys/utsname.h>  /* for uname(2) */
+
 
 /* Returns current kernel version encoded as major*65536 + minor*256 + patch,
  * so, for example,  to check if the kernel is greater than 2.2.11:
  *
  *     if (get_linux_version_code() > KERNEL_VERSION(2,2,11)) { <stuff> }
  */
-int get_linux_version_code(void)
+int FAST_FUNC get_linux_version_code(void)
 {
        struct utsname name;
        char *s;
        int i, r;
 
        if (uname(&name) == -1) {
-               bb_perror_msg("cannot get system information");
-               return (0);
+               bb_perror_msg("can't get system information");
+               return 0;
        }
 
        s = name.release;
        r = 0;
-       for (i=0 ; i<3 ; i++) {
+       for (i = 0; i < 3; i++) {
                r = r * 256 + atoi(strtok(s, "."));
                s = NULL;
        }