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

4.104.114.84.95
Last change on this file since f7fa7d7 was 98e4ebf5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 15:45:54

Fixed typo in the pointer to the license terms.

  • Property mode set to 100644
File size: 809 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-1997.
8 *  On-Line Applications Research Corporation (OAR).
9 *  Copyright assigned to U.S. Government, 1994.
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.OARcorp.com/rtems/license.html.
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.