Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
6dddb06a
Commit
6dddb06a
authored
Sep 26, 2003
by
Boris Boesler
Browse files
*** empty log message ***
[r1880]
parent
01c7bd30
Changes
3
Hide whitespace changes
Inline
Side-by-side
ir/tv/fltcalc.c
View file @
6dddb06a
...
...
@@ -11,6 +11,11 @@
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "fltcalc.h"
#include "strcalc.h"
...
...
@@ -25,12 +30,8 @@
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#ifdef
linux
#ifdef
HAVE_ALLOCA_H
# include <alloca.h>
#else
# ifdef __APPLE__
# include <stdlib.h>
# endif
#endif
typedef
uint32_t
UINT32
;
...
...
ir/tv/strcalc.c
View file @
6dddb06a
...
...
@@ -10,15 +10,17 @@
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "strcalc.h"
#include <stdlib.h>
#ifdef
linux
#ifdef
HAVE_ALLOCA_H
# include <alloca.h>
#else
# ifdef __APPLE__
# include <stdlib.h>
# endif
#endif
#include <assert.h>
/* assertions */
#include <string.h>
/* memset/memcmp */
...
...
ir/tv/tv.c
View file @
6dddb06a
...
...
@@ -20,17 +20,19 @@
/* This implementation assumes:
* - target has IEEE-754 floating-point arithmetic. */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <assert.h>
/* assertions */
#include <stdlib.h>
/* atoi() */
#include <string.h>
/* nice things for strings */
#include <strings.h>
/* strings.h also includes bsd only function strcasecmp */
#include <stdlib.h>
#ifdef
linux
#ifdef
HAVE_ALLOCA_H
# include <alloca.h>
#else
# ifdef __APPLE__
# include <stdlib.h>
# endif
#endif
#include "tv_t.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment