File: syslog_support.c

package info (click to toggle)
libgnatcoll-bindings 18-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 980 kB
  • sloc: ada: 6,581; ansic: 722; python: 687; makefile: 48; sh: 46
file content (11 lines) | stat: -rw-r--r-- 173 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Syslog binding support
 * Copyright (C) 2017, AdaCore
 */

#include <syslog.h>

void
syslog_wrapper(int priority, const char* msg) {
   syslog(priority, "%s", msg);
}