From 5c23f570607047042cb844cc0e1c237124cdcc58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 23 Feb 2004 03:52:08 +0000 Subject: [PATCH] I am not sure why I did those, but I guess it has something to do with doxygen. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6684 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/syslog.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/posix/syslog.h b/headers/posix/syslog.h index 13307db275..ab1b6fc88e 100644 --- a/headers/posix/syslog.h +++ b/headers/posix/syslog.h @@ -5,7 +5,7 @@ #define _SYSLOG_H_ -/**options for openlog() **/ +/*** options for openlog() ***/ #define LOG_PID (1 << 12) /* log the process (thread/team) ID with each message */ #define LOG_CONS (2 << 12) /* log to the system console on error */ @@ -16,7 +16,7 @@ #define LOG_NOWAIT (64 << 12) /* do not wait for child processes */ -/** facilities **/ +/*** facilities ***/ #define LOG_KERN (0 << 3) /* messages generated by the kernel */ #define LOG_USER (1 << 3) /* by user processes */ @@ -41,7 +41,7 @@ #define LOG_LOCAL7 (23 << 3) -/** priorities **/ +/*** priorities ***/ #define LOG_EMERG 0 /* a panic condition */ #define LOG_PANIC LOG_EMERG