Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2015-11-03 00:34:49 +0300
committerJeff Johnston <jjohnstn@redhat.com>2015-11-03 00:34:49 +0300
commit72e18faf625a9644b4d1fd8957433db482c42aae (patch)
treec971f62b1524cea4552745a52b5559faa3abfa43 /newlib/libm
parent50455323229d54a19ffc0a6fa2e1f1f24898b9c4 (diff)
Add missing semicolons to prototypes.
* libc/stdio/fseek.c: Add missing semicolons to prototypes in SYNOPSIS. * libc/stdio/fwide.c: Ditto. * libc/stdio64/fseeko64.c: Ditto. * libc/string/strtok.c: Ditto. * libc/string/wcstok.c: Ditto. * libm/math/w_cosh.c: Ditto. * libm/math/w_fmod.c: Ditto. * libm/mathfp/s_cosh.c: Ditto. * libm/mathfp/s_fmod.c: Ditto.
Diffstat (limited to 'newlib/libm')
-rw-r--r--newlib/libm/math/w_cosh.c6
-rw-r--r--newlib/libm/math/w_fmod.c8
-rw-r--r--newlib/libm/mathfp/s_cosh.c6
-rw-r--r--newlib/libm/mathfp/s_fmod.c8
4 files changed, 14 insertions, 14 deletions
diff --git a/newlib/libm/math/w_cosh.c b/newlib/libm/math/w_cosh.c
index ab046f6ed..54bfec37d 100644
--- a/newlib/libm/math/w_cosh.c
+++ b/newlib/libm/math/w_cosh.c
@@ -19,14 +19,14 @@ FUNCTION
ANSI_SYNOPSIS
#include <math.h>
double cosh(double <[x]>);
- float coshf(float <[x]>)
+ float coshf(float <[x]>);
TRAD_SYNOPSIS
#include <math.h>
- double cosh(<[x]>)
+ double cosh(<[x]>);
double <[x]>;
- float coshf(<[x]>)
+ float coshf(<[x]>);
float <[x]>;
DESCRIPTION
diff --git a/newlib/libm/math/w_fmod.c b/newlib/libm/math/w_fmod.c
index 47d1dd081..f9f72c745 100644
--- a/newlib/libm/math/w_fmod.c
+++ b/newlib/libm/math/w_fmod.c
@@ -22,15 +22,15 @@ fmodf
ANSI_SYNOPSIS
#include <math.h>
-double fmod(double <[x]>, double <[y]>)
-float fmodf(float <[x]>, float <[y]>)
+double fmod(double <[x]>, double <[y]>);
+float fmodf(float <[x]>, float <[y]>);
TRAD_SYNOPSIS
#include <math.h>
-double fmod(<[x]>, <[y]>)
+double fmod(<[x]>, <[y]>);
double (<[x]>, <[y]>);
-float fmodf(<[x]>, <[y]>)
+float fmodf(<[x]>, <[y]>);
float (<[x]>, <[y]>);
DESCRIPTION
diff --git a/newlib/libm/mathfp/s_cosh.c b/newlib/libm/mathfp/s_cosh.c
index 24b542092..f91411037 100644
--- a/newlib/libm/mathfp/s_cosh.c
+++ b/newlib/libm/mathfp/s_cosh.c
@@ -9,14 +9,14 @@ FUNCTION
ANSI_SYNOPSIS
#include <math.h>
double cosh(double <[x]>);
- float coshf(float <[x]>)
+ float coshf(float <[x]>);
TRAD_SYNOPSIS
#include <math.h>
- double cosh(<[x]>)
+ double cosh(<[x]>);
double <[x]>;
- float coshf(<[x]>)
+ float coshf(<[x]>);
float <[x]>;
DESCRIPTION
diff --git a/newlib/libm/mathfp/s_fmod.c b/newlib/libm/mathfp/s_fmod.c
index ec86376af..19bba9c18 100644
--- a/newlib/libm/mathfp/s_fmod.c
+++ b/newlib/libm/mathfp/s_fmod.c
@@ -22,15 +22,15 @@ fmodf
ANSI_SYNOPSIS
#include <math.h>
-double fmod(double <[x]>, double <[y]>)
-float fmodf(float <[x]>, float <[y]>)
+double fmod(double <[x]>, double <[y]>);
+float fmodf(float <[x]>, float <[y]>);
TRAD_SYNOPSIS
#include <math.h>
-double fmod(<[x]>, <[y]>)
+double fmod(<[x]>, <[y]>);
double (<[x]>, <[y]>);
-float fmodf(<[x]>, <[y]>)
+float fmodf(<[x]>, <[y]>);
float (<[x]>, <[y]>);
DESCRIPTION