You've already forked gnatcoll-bindings
mirror of
https://github.com/AdaCore/gnatcoll-bindings.git
synced 2026-02-12 12:59:11 -08:00
Part of major reorganization of gnatcoll for better modularity and maintainability. Change-Id: I24defa7165e4158987b147849882f4295a453da3 TN: P909-033
12 lines
173 B
C
12 lines
173 B
C
/*
|
|
* Syslog binding support
|
|
* Copyright (C) 2017, AdaCore
|
|
*/
|
|
|
|
#include <syslog.h>
|
|
|
|
void
|
|
syslog_wrapper(int priority, const char* msg) {
|
|
syslog(priority, "%s", msg);
|
|
}
|