Commit 1916914d authored by Tollef Fog Heen's avatar Tollef Fog Heen

Fix up std.syslog example

Thanks to InvertedAcceleration <chris.magee@velocity42.com> for a
patch that pointed me at documentation that needed improving.
parent d0c0ee9b
......@@ -95,9 +95,10 @@ Prototype
Return value
Void
Description
Logs *string* to syslog marked with *priority*.
Logs *string* to syslog marked with *priority*. See your
system's syslog.h file for the legal values of *priority*.
Example
std.syslog( LOG_USER|LOG_ALERT, "There is serious troble");
std.syslog(8 + 1, "Something is wrong");
fileread
--------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment