klogctl.c 434 B

1234567891011121314151617
  1. /*
  2. * klogctl() for uClibc
  3. *
  4. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  5. *
  6. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  7. */
  8. #include <sys/syscall.h>
  9. #include <unistd.h>
  10. #include <sys/klog.h>
  11. #define __NR__syslog __NR_syslog
  12. static __inline__ _syscall3(int, _syslog, int, type, char *, buf, int, len)
  13. int klogctl(int type, char *buf, int len)
  14. {
  15. return (_syslog(type, buf, len));
  16. }