summaryrefslogtreecommitdiff
path: root/missing.h
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-14 06:32:32 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-14 06:32:32 +0000
commit08c1738c512e2e3be60da17638e2857b547b2933 (patch)
treea976030df331224166c56f94e73ed7ac87fe8ec8 /missing.h
parent6b1239a8203a6150762eb8856c72771784b33bd0 (diff)
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c, gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h, node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h, rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c, util.c, util.h, variable.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing.h')
-rw-r--r--missing.h54
1 files changed, 27 insertions, 27 deletions
diff --git a/missing.h b/missing.h
index cb4f12a121..f402b1f655 100644
--- a/missing.h
+++ b/missing.h
@@ -26,103 +26,103 @@ struct timeval {
#endif
#ifndef HAVE_ACOSH
-extern double acosh _((double));
-extern double asinh _((double));
-extern double atanh _((double));
+extern double acosh(double);
+extern double asinh(double);
+extern double atanh(double);
#endif
#ifndef HAVE_CRYPT
-extern char *crypt _((const char *, const char *));
+extern char *crypt(const char *, const char *);
#endif
#ifndef HAVE_DUP2
-extern int dup2 _((int, int));
+extern int dup2(int, int);
#endif
#ifndef HAVE_FINITE
-extern int finite _((double));
+extern int finite(double);
#endif
#ifndef HAVE_FLOCK
-extern int flock _((int, int));
+extern int flock(int, int);
#endif
/*
#ifndef HAVE_FREXP
-extern double frexp _((double, int *));
+extern double frexp(double, int *);
#endif
*/
#ifndef HAVE_HYPOT
-extern double hypot _((double, double));
+extern double hypot(double, double);
#endif
#ifndef HAVE_ERF
-extern double erf _((double));
-extern double erfc _((double));
+extern double erf(double);
+extern double erfc(double);
#endif
#ifndef HAVE_ISINF
# if defined(HAVE_FINITE) && defined(HAVE_ISNAN)
# define isinf(x) (!finite(x) && !isnan(x))
# else
-extern int isinf _((double));
+extern int isinf(double);
# endif
#endif
#ifndef HAVE_ISNAN
-extern int isnan _((double));
+extern int isnan(double);
#endif
/*
#ifndef HAVE_MEMCMP
-extern int memcmp _((char *, char *, int));
+extern int memcmp(char *, char *, int);
#endif
*/
#ifndef HAVE_MEMMOVE
-extern void *memmove _((void *, void *, int));
+extern void *memmove(void *, void *, int);
#endif
/*
#ifndef HAVE_MODF
-extern double modf _((double, double *));
+extern double modf(double, double *);
#endif
*/
#ifndef HAVE_STRCASECMP
-extern int strcasecmp _((char *, char *));
+extern int strcasecmp(char *, char *);
#endif
#ifndef HAVE_STRNCASECMP
-extern int strncasecmp _((char *, char *, int));
+extern int strncasecmp(char *, char *, int);
#endif
#ifndef HAVE_STRCHR
-extern char *strchr _((char *, int));
-extern char *strrchr _((char *, int));
+extern char *strchr(char *, int);
+extern char *strrchr(char *, int);
#endif
#ifndef HAVE_STRERROR
-extern char *strerror _((int));
+extern char *strerror(int);
#endif
#ifndef HAVE_STRFTIME
-extern size_t strftime _((char *, size_t, const char *, const struct tm *));
+extern size_t strftime(char *, size_t, const char *, const struct tm *);
#endif
#ifndef HAVE_STRSTR
-extern char *strstr _((char *, char *));
+extern char *strstr(char *, char *);
#endif
/*
#ifndef HAVE_STRTOL
-extern long strtol _((char *, char **, int));
+extern long strtol(char *, char **, int);
#endif
*/
#ifndef HAVE_STRTOUL
-extern unsigned long strtoul _((char *, char **, int));
+extern unsigned long strtoul(char *, char **, int);
#endif
#ifndef HAVE_VSNPRINTF
@@ -131,8 +131,8 @@ extern unsigned long strtoul _((char *, char **, int));
# else
# include <varargs.h>
# endif
-extern int snprintf __((char *, size_t n, char const *, ...));
-extern int vsnprintf _((char *, size_t n, char const *, va_list));
+extern int snprintf(char *, size_t n, char const *, ...);
+extern int vsnprintf(char *, size_t n, char const *, va_list);
#endif
#endif /* MISSING_H */