14 lines
205 B
C
14 lines
205 B
C
#ifndef __IPC_MSG_H__
|
|
#define __IPC_MSG_H__
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "ipc.h"
|
|
void ipc_message_print (const struct ipc_message *m);
|
|
|
|
#endif
|