]> Joshua Wise's Git repositories - netwatch.git/blobdiff - lib/minilib.c
add a lot of copyright headers
[netwatch.git] / lib / minilib.c
index 56090ed9389f9a8e1d0657649ca73438fc70203d..392eae7abcaf146e8f09ce8a4b4f3cec32457b6e 100644 (file)
@@ -1,12 +1,23 @@
+/* minilib.c
+ * General-purpose C library routines.
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
 #include "console.h"
 #include <minilib.h>
 #include <output.h>
 
+
 /* We have both _memcpy and memcpy, because gcc might be able to do better in lwip.
  * For small things, gcc inlines its memcpy, but for large things, we call out
  * to this memcpy.
  */
-inline void _memcpy(void *dest, const void *src, int bytes)
+void _memcpy(void *dest, const void *src, int bytes)
 {
        /* I hate everyone */
        /* Since we otherwise compile with -O0, we might as well manually speed this up a bit. */
This page took 0.023879 seconds and 4 git commands to generate.