]> git.tuebingen.mpg.de Git - osl.git/blobdiff - examples/osltar/osltar.c
hlt: Fix typo in comment.
[osl.git] / examples / osltar / osltar.c
index 3d3a6400a6425ed3ba4eddd624145af968b63edf..e93bb0a65a0a41a154f8748fbfd8bacb6d70c472 100644 (file)
@@ -35,10 +35,11 @@ enum osltar_columns {
 
 
 /**
- * We want doxygen to create documentation for certain static functions. So we
- * use __static__ for such functions.
+ * \cond We want doxygen to create documentation for certain static functions.
+ * So we use __static__ for such functions.
  */
 #define __static__ static
+/** \endcond */
 
 /**
  * Compare two osl objects of string type.
@@ -220,7 +221,7 @@ static int com_create(int argc, char **argv)
 /**
  * Write the whole buffer to a file descriptor.
  */
-ssize_t write_all(int fd, const void *buf, size_t size)
+static ssize_t write_all(int fd, const void *buf, size_t size)
 {
        const char *b = buf;
        while (size) {