]> Git Repo - binutils.git/blobdiff - gas/strerror.c
Ran "indent", for GNU coding style; some code & comments still need fixup.
[binutils.git] / gas / strerror.c
index dbc403be3075ea1489a36371a4659fa0850f5e98..0e3d7f9f0941b50057986a6382201bb42c4ad315 100644 (file)
@@ -49,13 +49,13 @@ extern char *sys_errlist[];
 
 char *
 strerror (code)
-  int code;
+     int code;
 {
-  return (((code < 0) || (code >= sys_nerr)) 
+  return (((code < 0) || (code >= sys_nerr))
          ? "(unknown error)"
-         : sys_errlist [code]);
+         : sys_errlist[code]);
 }
 
 #endif /* HAVE_STRERROR */
 
- /* end of strerror.c */
+/* end of strerror.c */
This page took 0.023279 seconds and 4 git commands to generate.