source: rtems/c/src/exec/posix/src/types.c @ f42b726

4.104.114.84.95
Last change on this file since f42b726 was f42b726, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 14:17:28

2001-01-24 Ralf Corsepius <corsepiu@…>

  • configure.in: Add src/config.h
  • src/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • src/.cvsignore: Add config.h and stamp-h
  • src/*.c: Add config.h support.
  • Property mode set to 100644
File size: 559 bytes
Line 
1/*
2 *  This file is the shell of what it initially was and is now misnamed.
3 *
4 *  $Id$
5 */
6
7#if HAVE_CONFIG_H
8#include "config.h"
9#endif
10
11#include <limits.h>
12#include <errno.h>
13#include <string.h>
14#include <sys/types.h>
15
16#include <rtems/system.h>
17#include <rtems/score/object.h>
18#include <rtems/seterr.h>
19
20/*
21 * TEMPORARY
22 */
23
24#include <assert.h>
25
26int POSIX_MP_NOT_IMPLEMENTED()
27{
28  assert( 0 );
29  return 0;
30}
31
32int POSIX_BOTTOM_REACHED()
33{
34  assert( 0 );
35  return 0;
36}
37
38int POSIX_NOT_IMPLEMENTED()
39{
40  assert( 0 );
41  return 0;
42}
43
44/*
45 * END OF TEMPORARY
46 */
47
Note: See TracBrowser for help on using the repository browser.