source: rtems/c/src/lib/libc/internal.h @ 637df35

4.104.114.84.95
Last change on this file since 637df35 was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 892 bytes
Line 
1/*  internal.h
2 *
3 *  This include file contains internal information
4 *  for the RTEMS C library support which is needed across
5 *  files.
6 *
7 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
8 *  On-Line Applications Research Corporation (OAR).
9 *  All rights assigned to U.S. Government, 1994.
10 *
11 *  This material may be reproduced by or for the U.S. Government pursuant
12 *  to the copyright license under the clause at DFARS 252.227-7013.  This
13 *  notice must appear in all copies of this file and its derivatives.
14 *
15 *  $Id$
16 */
17
18#ifndef __INTERNAL_LIBC_h
19#define __INTERNAL_LIBC_h
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25void MY_task_set_note(
26  rtems_tcb        *tcb,
27  rtems_unsigned32 notepad,
28  rtems_unsigned32 note
29);
30
31rtems_unsigned32 MY_task_get_note(
32  rtems_tcb        *tcb,
33  rtems_unsigned32  notepad
34);
35
36#ifdef __cplusplus
37}
38#endif
39
40#endif
41/* end of include file */
Note: See TracBrowser for help on using the repository browser.