Changeset e1871b9 in rtems


Ignore:
Timestamp:
11/24/08 16:39:04 (15 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 5, master
Children:
ea5c9c6
Parents:
f4cc6c5
Message:

2008-11-24 Ralf Corsépius <ralf.corsepius@…>

  • paranoia/paranoia.c: Add missing prototypes.
Location:
testsuites/samples
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • testsuites/samples/ChangeLog

    rf4cc6c5 re1871b9  
     12008-11-24      Ralf Corsépius <ralf.corsepius@rtems.org>
     2
     3        * paranoia/paranoia.c: Add missing prototypes.
     4
    152008-10-13      Joel Sherrill <joel.sherrill@oarcorp.com>
    26
  • testsuites/samples/paranoia/paranoia.c

    rf4cc6c5 re1871b9  
    154154#include <stdio.h>
    155155#include <string.h>
    156 
    157 #if defined(solaris2)
    158156#include <math.h>
    159 #endif
     157#include <stdlib.h>
    160158
    161159/*
     
    197195
    198196jmp_buf ovfl_buf;
    199 extern double fabs (), floor (), log (), pow (), sqrt ();
    200 extern void exit ();
    201 typedef void (*Sig_type) ();
    202 FLOAT   Sign (), Random ();
    203 extern void BadCond ();
    204 extern void SqXMinX ();
    205 extern void TstCond ();
    206 extern void notify ();
     197/* extern double fabs (), floor (), log (), pow (), sqrt (); */
     198/* extern void exit (); */
     199extern void _sigfpe(int);
     200typedef void (*Sig_type) (int);
     201FLOAT   Sign (FLOAT), Random (void);
     202extern void BadCond (int, char*);
     203extern void SqXMinX (int);
     204extern void TstCond (int, int, char*);
     205extern void notify (char *);
    207206/* extern int read (); */
    208 extern void Characteristics ();
    209 extern void Heading ();
    210 extern void History ();
    211 extern void Instructions ();
    212 extern void IsYeqX ();
    213 extern void NewD ();
    214 extern void Pause ();
    215 extern void PrintIfNPositive ();
    216 extern void SR3750 ();
    217 extern void SR3980 ();
    218 extern void TstPtUf ();
     207extern void Characteristics (void);
     208extern void Heading (void);
     209extern void History (void);
     210extern void Instructions (void);
     211extern void IsYeqX (void);
     212extern void NewD (void);
     213extern void Pause (void);
     214extern void PrintIfNPositive (void);
     215extern void SR3750 (void);
     216extern void SR3980 (void);
     217extern void TstPtUf (void);
     218
     219void msglist(char**);
    219220
    220221Sig_type sigsave;
     
    341342#ifdef NOMAIN
    342343#define main paranoia
     344int paranoia(int, char**);
    343345#endif
    344346
Note: See TracChangeset for help on using the changeset viewer.