summaryrefslogtreecommitdiffstatshomepage
path: root/src/build/makedep.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/build/makedep.c')
-rw-r--r--src/build/makedep.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/build/makedep.c b/src/build/makedep.c
index 7a4e0aa9367..694b81f0e76 100644
--- a/src/build/makedep.c
+++ b/src/build/makedep.c
@@ -50,7 +50,7 @@
CONSTANTS
***************************************************************************/
-#define HASH_SIZE 193
+#define HASH_SIZE 193
/***************************************************************************
@@ -59,24 +59,24 @@
struct include_path
{
- include_path * next;
- astring path;
+ include_path * next;
+ astring path;
};
struct exclude_path
{
- exclude_path * next;
- astring path;
- int pathlen;
- UINT8 recursive;
+ exclude_path * next;
+ astring path;
+ int pathlen;
+ UINT8 recursive;
};
struct list_entry
{
- list_entry * next;
- astring name;
+ list_entry * next;
+ astring name;
};
@@ -84,15 +84,15 @@ struct file_entry;
struct dependency
{
- dependency * next;
- file_entry * file;
+ dependency * next;
+ file_entry * file;
};
struct file_entry
{
- astring name;
- dependency * deplist;
+ astring name;
+ dependency * deplist;
};
typedef tagmap_t<UINT8> dependency_map;