Skip to content

Commit

Permalink
Fedora patches
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Jun 10, 2009
1 parent d8725a0 commit e503783
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 5 deletions.
2 changes: 0 additions & 2 deletions Changelist.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
#include <iostream>
#include <iomanip>

#include "data_atomic.h"

#include "data.h"

namespace eda {
Expand Down
1 change: 1 addition & 0 deletions FactoryOwner.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

#include <iomanip>

#include "data.h"
#include "debug.h"

#include "util.h"
Expand Down
3 changes: 3 additions & 0 deletions File.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
// part of "The Embedded Disassembler"
// released under GPLv3, see http://gplv3.fsf.org/

#include <cstdio>

#include "data.h"
#include "File.h"
#include "util.h"

Expand Down
2 changes: 1 addition & 1 deletion History.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
// modified_ maps Addresses to changelists that changed them
// I could map right to changelists themselves, but the numbers way is cleaner

#include "util.h"
#include "data.h"
#include "util.h"

using namespace eda;

Expand Down
2 changes: 1 addition & 1 deletion ParsedInstruction.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// part of "The Embedded Disassembler"
// released under GPLv3, see http://gplv3.fsf.org/

#include "data_atomic.h"
#include "data.h"

#include <map>
#include <string>
Expand Down
6 changes: 6 additions & 0 deletions data.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
#ifndef EDA_DATA_H_
#define EDA_DATA_H_

#ifdef __linux
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
#endif

#include <map>
#include <set>

Expand Down
1 change: 1 addition & 0 deletions debug.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
//
// Various functions to assist debugging

#include "data.h"
#include "debug.h"

#include <iostream>
Expand Down
3 changes: 2 additions & 1 deletion util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
// part of "The Embedded Disassembler"
// released under GPLv3, see http://gplv3.fsf.org/

#include <cstdio>
#include <string>
#include <sstream>
#include <iomanip>

#include "util.h"
#include "data.h"
#include "util.h"

using namespace std;
using namespace eda;
Expand Down

0 comments on commit e503783

Please sign in to comment.