
This patch moves more includes (most of them, to tell the truth) to common/include directory. This completes the list of includes needed to compile current trunk with the new libc (but to do that you need more patches in queue). This patch also contains some modification (for compilation with new headers) to the common includes under __NBSD_LIBC, the define used in mk script to specialize compilation with new includes.
29 lines
435 B
C
29 lines
435 B
C
/*
|
|
inet/mq.h
|
|
|
|
Created: Jan 3, 1992 by Philip Homburg
|
|
|
|
Copyright 1995 Philip Homburg
|
|
*/
|
|
|
|
#ifndef INET__MQ_H
|
|
#define INET__MQ_H
|
|
|
|
typedef struct mq
|
|
{
|
|
message mq_mess;
|
|
int mq_mess_status;
|
|
struct mq *mq_next;
|
|
int mq_allocated;
|
|
} mq_t;
|
|
|
|
_PROTOTYPE( mq_t *mq_get, (void) );
|
|
_PROTOTYPE( void mq_free, (mq_t *mq) );
|
|
_PROTOTYPE( void mq_init, (void) );
|
|
|
|
#endif /* INET__MQ_H */
|
|
|
|
/*
|
|
* $PchId: mq.h,v 1.4 1995/11/21 06:40:30 philip Exp $
|
|
*/
|