source: trunk/libs/newlib/src/newlib/libc/sys/linux/mq_notify.c

Last change on this file was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 290 bytes
Line 
1/* Copyright 2002, Red Hat Inc. */
2
3#include <mqueue.h>
4#include <errno.h>
5#include <machine/weakalias.h>
6
7#include "mqlocal.h"
8
9int
10__libc_mq_notify (mqd_t msgid, const struct sigevent *notification)
11{
12  errno = ENOSYS;
13  return -1;
14}
15weak_alias (__libc_mq_notify, mq_notify)
16
17     
18
19
20
21
22
Note: See TracBrowser for help on using the repository browser.