View | Details | Raw Unified | Return to bug 1276
Collapse All | Expand All

(-)a/src/core/model/default-simulator-impl.cc (-2 lines)
 Lines 28-35    Link Here 
28
#include "assert.h"
28
#include "assert.h"
29
#include "log.h"
29
#include "log.h"
30
30
31
#include <math.h>
32
33
NS_LOG_COMPONENT_DEFINE ("DefaultSimulatorImpl");
31
NS_LOG_COMPONENT_DEFINE ("DefaultSimulatorImpl");
34
32
35
namespace ns3 {
33
namespace ns3 {
(-)a/src/core/model/int64x64-128.h (-1 / +1 lines)
 Lines 4-10    Link Here 
4
4
5
#include "ns3/core-config.h"
5
#include "ns3/core-config.h"
6
#include <stdint.h>
6
#include <stdint.h>
7
#include <math.h>
7
#include <cmath>
8
8
9
#if defined(HAVE___UINT128_T) && !defined(HAVE_UINT128_T)
9
#if defined(HAVE___UINT128_T) && !defined(HAVE_UINT128_T)
10
typedef __uint128_t uint128_t;
10
typedef __uint128_t uint128_t;
(-)a/src/core/model/int64x64-cairo.h (-1 / +1 lines)
 Lines 3-9    Link Here 
3
#define INT64X64_CAIRO_H
3
#define INT64X64_CAIRO_H
4
4
5
#include <stdint.h>
5
#include <stdint.h>
6
#include <math.h>
6
#include <cmath>
7
#include "cairo-wideint-private.h"
7
#include "cairo-wideint-private.h"
8
8
9
#ifdef __i386__
9
#ifdef __i386__
(-)a/src/core/model/int64x64-double.h (-1 / +1 lines)
 Lines 3-9    Link Here 
3
#define INT64X64_DOUBLE_H
3
#define INT64X64_DOUBLE_H
4
4
5
#include <iostream>
5
#include <iostream>
6
#include <math.h>
6
#include <cmath>
7
7
8
namespace ns3 {
8
namespace ns3 {
9
9
(-)a/src/core/model/ns2-calendar-scheduler.cc (-2 / +2 lines)
 Lines 23-30    Link Here 
23
#include "assert.h"
23
#include "assert.h"
24
#include "log.h"
24
#include "log.h"
25
#include <cassert>
25
#include <cassert>
26
#include <math.h>
26
#include <cstring>
27
#include <string.h>
27
#include <cmath>
28
28
29
namespace ns3 {
29
namespace ns3 {
30
30
(-)a/src/core/model/nstime.h (-1 / +1 lines)
 Lines 25-31    Link Here 
25
#include "attribute-helper.h"
25
#include "attribute-helper.h"
26
#include "int64x64.h"
26
#include "int64x64.h"
27
#include <stdint.h>
27
#include <stdint.h>
28
#include <math.h>
28
#include <cmath>
29
#include <ostream>
29
#include <ostream>
30
30
31
namespace ns3 {
31
namespace ns3 {
(-)a/src/core/model/random-variable.cc (-1 / +1 lines)
 Lines 21-27    Link Here 
21
21
22
#include <iostream>
22
#include <iostream>
23
23
24
#include <math.h>
24
#include <cmath>
25
#include <stdlib.h>
25
#include <stdlib.h>
26
#include <sys/time.h>                   // for gettimeofday
26
#include <sys/time.h>                   // for gettimeofday
27
#include <unistd.h>
27
#include <unistd.h>
(-)a/src/core/model/realtime-simulator-impl.cc (-2 lines)
 Lines 33-40    Link Here 
33
#include "enum.h"
33
#include "enum.h"
34
34
35
35
36
#include <math.h>
37
38
NS_LOG_COMPONENT_DEFINE ("RealtimeSimulatorImpl");
36
NS_LOG_COMPONENT_DEFINE ("RealtimeSimulatorImpl");
39
37
40
namespace ns3 {
38
namespace ns3 {
(-)a/src/core/model/simulator.cc (-1 lines)
 Lines 31-37    Link Here 
31
#include "assert.h"
31
#include "assert.h"
32
#include "log.h"
32
#include "log.h"
33
33
34
#include <math.h>
35
#include <fstream>
34
#include <fstream>
36
#include <list>
35
#include <list>
37
#include <vector>
36
#include <vector>
(-)a/src/core/model/test.cc (-2 / +2 lines)
 Lines 20-27    Link Here 
20
#include "assert.h"
20
#include "assert.h"
21
#include "abort.h"
21
#include "abort.h"
22
#include "system-path.h"
22
#include "system-path.h"
23
#include <math.h>
23
#include <cmath>
24
#include <string.h>
24
#include <cstring>
25
#include <vector>
25
#include <vector>
26
#include <list>
26
#include <list>
27
27
(-)a/src/core/model/time.cc (-1 / +1 lines)
 Lines 26-32    Link Here 
26
#include "string.h"
26
#include "string.h"
27
#include "object.h"
27
#include "object.h"
28
#include "config.h"
28
#include "config.h"
29
#include <math.h>
29
#include <cmath>
30
#include <sstream>
30
#include <sstream>
31
31
32
namespace ns3 {
32
namespace ns3 {
(-)a/src/core/test/random-variable-test-suite.cc (-1 / +1 lines)
 Lines 20-26    Link Here 
20
//
20
//
21
21
22
#include <iostream>
22
#include <iostream>
23
#include <math.h>
23
#include <cmath>
24
24
25
#include "ns3/test.h"
25
#include "ns3/test.h"
26
#include "ns3/assert.h"
26
#include "ns3/assert.h"
(-)a/src/core/test/rng-test-suite.cc (-1 / +1 lines)
 Lines 15-21    Link Here 
15
 */
15
 */
16
16
17
17
18
#include <math.h>
18
#include <cmath>
19
#include <gsl/gsl_cdf.h>
19
#include <gsl/gsl_cdf.h>
20
#include <gsl/gsl_histogram.h>
20
#include <gsl/gsl_histogram.h>
21
#include <time.h>
21
#include <time.h>

Return to bug 1276