aboutsummaryrefslogtreecommitdiffstats
path: root/it/alpha
Commit message (Expand)AuthorAgeFilesLines
* Revert "Updated Estonian translation"Thomas Backlund2014-10-121-0/+1
* Updated Estonian translationMarek Laane2014-10-121-1/+0
* symlinks in all languages synchronised with EngFilip Komar2012-08-011-0/+1
* remove obsolete alpha pagesRomain d'Alverny2011-05-171-93/+0
* header changeRomain d'Alverny2011-03-301-1/+1
* use correct html[lang], include mirrors scriptRomain d'Alverny2011-03-111-36/+5
* add it translation for 'alpha' thanks to MarcelloDamien Lallement2011-02-161-0/+124
df8d'/>
path: root/mdk-stage1/dietlibc/lib/msgget.c
blob: 6023c1786e6d8232d731d96627dec1a65f400dcd (plain)
1
2
3
4
5
6
7
8
9
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>

extern int __ipc(int,key_t,int,int,int);

int msgget(key_t key,int flag) {
  return __ipc(MSGGET,key,flag,0,0);
}