summaryrefslogtreecommitdiff
path: root/kern/fmt.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-02-24 07:48:12 +0100
committerRichard Braun <rbraun@sceen.net>2018-02-24 07:48:12 +0100
commitd6415186a2cbcd75c7b9bacf235dc03a8145f2c2 (patch)
treef906e210d70082509b9aa6489eea4c03a1f703bb /kern/fmt.h
parentc31ddfaf11320dea4828c753f48a29041643f552 (diff)
Update license note about modules from librbraun
Diffstat (limited to 'kern/fmt.h')
-rw-r--r--kern/fmt.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/kern/fmt.h b/kern/fmt.h
index 3143567..c23a6a0 100644
--- a/kern/fmt.h
+++ b/kern/fmt.h
@@ -14,6 +14,9 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ * Upstream site with license notes :
+ * http://git.sceen.net/rbraun/librbraun.git/
+ *
*
* Formatted string functions.
*
@@ -32,14 +35,10 @@
* common:
* - modifiers: hh h l ll z t
* - specifiers: d i o u x X c s p n %
- *
- *
- * Upstream site with license notes :
- * http://git.sceen.net/rbraun/librbraun.git/
*/
-#ifndef FMT_H
-#define FMT_H
+#ifndef KERN_FMT_H
+#define KERN_FMT_H
#include <stdarg.h>
#include <stddef.h>
@@ -62,4 +61,4 @@ int fmt_sscanf(const char *str, const char *format, ...)
int fmt_vsscanf(const char *str, const char *format, va_list ap)
__attribute__((format(scanf, 2, 0)));
-#endif /* FMT_H */
+#endif /* KERN_FMT_H */