Simplify and rename mmap_full_file().
[adu.git] / gcc-compat.h
index 1964e78bfd527d7c9ade762c7473ecc60ba72e93..2ead2e7404f82ae5cddac2c1a40881f2a1c8b2e2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2008 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2008 Andre Noll <maan@tuebingen.mpg.de>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
@@ -20,7 +20,7 @@
  * If not all the functions (handlers) use all arguments, gcc will print
  * a warning.
  *
- * Marking those few unused function parameters with \p __a_unused to supress
+ * Marking those few unused function parameters with \p __a_unused to suppress
  * the gcc warnings allows us to get a clean build _and_ the benefit of the
  * warning in other cases where we do care about unused parameters.
  */
@@ -34,7 +34,7 @@
 /**
  * Let gcc check format strings also for our own functions.
  *
- * Functions marked with \p __printf will be cheked by gcc for format string
+ * Functions marked with \p __printf will be checked by gcc for format string
  * bugs, just like printf() if -Wformat-security is enabled.
  *
  * \param p The number of the "format string" parameter.