Temporarily removing menuetlibc

git-svn-id: svn://kolibrios.org@4799 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
right-hearted
2014-04-08 16:39:46 +00:00
parent c62aaa70ed
commit b22b1101b6
1730 changed files with 0 additions and 316209 deletions

View File

@@ -1,34 +0,0 @@
#ifndef __ITC_H
#define __ITC_H
#ifdef __cplusplus
extern "C" {
#endif
#include<stdlib.h>
#define MSG_BUF_SZ 128
typedef struct __itc_msg_t
{
char msgbuf[MSG_BUF_SZ];
int sender_tid;
struct __itc_msg_t * next;
} itc_msg_t;
typedef struct
{
itc_msg_t * head;
int count;
} itc_msgq_t;
typedef struct
{
char * name;
int real_pid;
#ifdef __cplusplus
}
#endif
#endif