HuntnGather

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 21  →  ?path2? @ 22
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/HuntnGather/Gather/Gather
/trunk/HuntnGather/Gather/Gather.c
@@ -15,6 +15,10 @@
#include <proto/dos.h>
#include <proto/exec.h>
 
#if defined ___AsyncIO___
#include <asyncio.h>
#endif
 
#include "StringStack.h"
 
#if !defined ___HAVE_GETOPT___
@@ -21,7 +25,7 @@
#include "getopt.h"
#endif
 
#define PROGRAM_VERSION "1.7.2"
#define PROGRAM_VERSION "1.7.3"
 
#if defined ___AmigaOS___
/*************************************************************************/
@@ -39,6 +43,7 @@
#define FALSE 0;
#endif
 
#define ASYNC_BUF 8192
#define MAX_MEM 262144
#define NAME_BUF 32
#define PATH_BUF 128
@@ -69,11 +74,16 @@
* Sorts a database file lexicographically.
*/
void SortDatabase(char *dbFile) {
#if defined ___AsyncIO___
struct AsyncFile *fp;
LONG c;
#else
FILE *fp;
char c;
#endif
char *name = NULL;
char *path = NULL;
char **database;
char c;
int i;
int side;
unsigned int line;
@@ -81,7 +91,11 @@
int path_size;
 
// Open database file for reading.
#if defined ___AsyncIO___
if((fp = OpenAsync(dbFile, MODE_READ, ASYNC_BUF)) == NULL) {
#else
if((fp = fopen(dbFile, "r")) == NULL) {
#endif
fprintf(stderr, "Unable to open gather database for reading.\n");
return;
}
@@ -91,6 +105,7 @@
name = malloc(name_size * sizeof(*name));
path_size = PATH_BUF;
path = malloc(path_size * sizeof(*path));
 
line = 0;
side = 0;
i = 0;
@@ -98,8 +113,11 @@
if(verbose) {
fprintf(stdout, "Sorting database: '%s'\n", dbFile);
}
 
#if defined ___AsyncIO___
while(run && (c = ReadCharAsync(fp)) != -1) {
#else
while(run && fscanf(fp, "%c", &c) == 1) {
#endif
#if defined ___AmigaOS___
// Check if CTRL+C was pressed and abort the program.
if(SetSignal(0L, SIGBREAKF_CTRL_C) & SIGBREAKF_CTRL_C) {
@@ -150,7 +168,7 @@
path[i + 1] = '\0';
break;
default:
fprintf(stderr, "Database corrupted.\n");
fprintf(stderr, "Database corrupted: %d\n", side);
break;
}
++i;
@@ -158,23 +176,41 @@
}
}
 
#if defined ___AsyncIO___
CloseAsync(fp);
#else
fclose(fp);
#endif
 
// Sort the database.
qsort(database, line, sizeof(char *), compare);
 
// Write the database lines back to the database.
#if defined ___AsyncIO___
if((fp = OpenAsync(dbFile, MODE_READ|MODE_WRITE, ASYNC_BUF)) == NULL) {
#else
if((fp = fopen(dbFile, "w+")) == NULL) {
#endif
fprintf(stderr, "Unable to open gather database for writing.\n");
return;
}
 
for(i = 0; i < line; ++i) {
#if defined ___AsyncIO___
WriteAsync(fp, database[i], (LONG)(strlen(database[i]) * sizeof(char)));
WriteAsync(fp, "\n", 1 * sizeof(char));
#else
fprintf(fp, "%s\n", database[i]);
#endif
}
 
#if defined ___AsyncIO___
CloseAsync(fp);
#else
fclose(fp);
#endif
 
free(database);
fclose(fp);
}
 
/*
@@ -182,7 +218,11 @@
* Updates a database file "dbFile".
*/
void UpdateDatabase(char *dbFile, stringStack *dirStack, stats *stats) {
#if defined ___AsyncIO___
struct AsyncFile *fp;
#else
FILE *fp;
#endif
DIR *dir;
struct dirent *dirEntry;
struct stat dirStat;
@@ -190,7 +230,11 @@
char *path;
char *subPath;
 
#if defined ___AsyncIO___
if((fp = OpenAsync(dbFile, MODE_READ|MODE_WRITE, ASYNC_BUF)) == NULL) {
#else
if((fp = fopen(dbFile, "w+")) == NULL) {
#endif
fprintf(stderr, "Unable to open gather database for writing.\n");
return;
}
@@ -252,8 +296,14 @@
strupr(dirEntry->d_name);
#endif
 
#if defined ___AsyncIO___
WriteAsync(fp, dirEntry->d_name, (LONG)(strlen(dirEntry->d_name) * sizeof(char)));
WriteAsync(fp, "\t", 1 * sizeof(char));
WriteAsync(fp, subPath, (LONG)(strlen(subPath) * sizeof(char)));
WriteAsync(fp, "\n", 1 * sizeof(char));
#else
fprintf(fp, "%s\t%s\n", dirEntry->d_name, subPath);
 
#endif
++stats->files;
 
if(verbose) {
@@ -274,7 +324,11 @@
fprintf(stdout, "\n");
}
 
#if defined ___AsyncIO___
CloseAsync(fp);
#else
fclose(fp);
#endif
 
}
 
@@ -304,18 +358,30 @@
* Counts the lines in a database file "dbFile".
*/
int CountDatabaseLines(char *dbFile) {
#if defined ___AsyncIO___
struct AsyncFile *fp;
LONG c;
#else
FILE *fp;
char c;
#endif
int lines;
char c;
 
#if defined ___AsyncIO___
if((fp = OpenAsync(dbFile, MODE_READ, ASYNC_BUF)) == NULL) {
#else
if((fp = fopen(dbFile, "r")) == NULL) {
#endif
fprintf(stderr, "Unable to open gather database for reading.\n");
fclose(fp);
return 0;
}
 
lines = 0;
#if defined ___AsyncIO___
while((c = ReadCharAsync(fp)) != -1) {
#else
while(fscanf(fp, "%c", &c) == 1) {
#endif
switch(c) {
case '\n':
++lines;
@@ -323,7 +389,11 @@
}
}
 
#if defined ___AsyncIO___
CloseAsync(fp);
#else
fclose(fp);
#endif
 
return lines;
}
@@ -369,19 +439,31 @@
* Writes lines from the database "dbFile" to temporary filenames "tmpNames".
*/
void WriteTempFiles(char *dbFile, char **tmpNames, int tmpFiles, int tmpLines, int total) {
#if defined ___AsyncIO___
struct AsyncFile *fp, *tp;
LONG c;
#else
FILE *fp, *tp;
char c;
#endif
int lines;
int linesWritten;
 
#if defined ___AsyncIO___
if((fp = OpenAsync(dbFile, MODE_READ, ASYNC_BUF)) == NULL) {
#else
if((fp = fopen(dbFile, "r")) == NULL) {
#endif
fprintf(stderr, "Unable to open gather database for reading.\n");
return;
}
 
#if defined ___AsyncIO___
if((tp = OpenAsync(tmpNames[--tmpFiles], MODE_READ|MODE_WRITE, ASYNC_BUF)) == NULL) {
#else
if((tp = fopen(tmpNames[--tmpFiles], "w+")) == NULL) {
#endif
fprintf(stderr, "Unable to open temporary file '%s' for writing.\n", tmpNames[tmpFiles]);
fclose(fp);
return;
}
 
@@ -391,7 +473,11 @@
 
linesWritten = 0;
lines = 0;
#if defined ___AsyncIO___
while(run && (c = ReadCharAsync(fp)) != -1) {
#else
while(run && fscanf(fp, "%c", &c) == 1) {
#endif
#if defined ___AmigaOS___
// Check if CTRL+C was pressed and abort the program.
if(SetSignal(0L, SIGBREAKF_CTRL_C) & SIGBREAKF_CTRL_C) {
@@ -408,10 +494,19 @@
}
 
// Write the newline character back.
#if defined ___AsyncIO___
if(WriteCharAsync(tp, (UBYTE)c) != 1) {
#else
if(fprintf(tp, "%c", c) != 1) {
#endif
fprintf(stderr, "Unable to write to temporary file '%s'.\n", tmpNames[tmpFiles]);
#if defined ___AsyncIO___
CloseAsync(tp);
CloseAsync(fp);
#else
fclose(tp);
fclose(fp);
#endif
return;
}
// Switch to the next temporary file.
@@ -422,11 +517,21 @@
}
 
// Close the previous temporary file and write to the next temporary file.
#if defined ___AsyncIO___
CloseAsync(tp);
if((tp = OpenAsync(tmpNames[--tmpFiles], MODE_READ|MODE_WRITE, ASYNC_BUF)) == NULL) {
#else
fclose(tp);
if((tp = fopen(tmpNames[--tmpFiles], "w+")) == NULL) {
#endif
fprintf(stderr, "Unable to open temporary file '%s' for writing.\n", tmpNames[tmpFiles]);
#if defined ___AsyncIO___
CloseAsync(tp);
CloseAsync(fp);
#else
fclose(tp);
fclose(fp);
#endif
}
lines = 0;
break;
@@ -433,10 +538,19 @@
}
break;
default:
#if defined ___AsyncIO___
if(WriteCharAsync(tp, (UBYTE)c) != 1) {
#else
if(fprintf(tp, "%c", c) != 1) {
#endif
fprintf(stderr, "Unable to write to temporary file '%s'.\n", tmpNames[tmpFiles]);
#if defined ___AsyncIO___
CloseAsync(tp);
CloseAsync(fp);
#else
fclose(tp);
fclose(fp);
#endif
return;
}
break;
@@ -445,8 +559,13 @@
 
fprintf(stdout, "\n");
 
#if defined ___AsyncIO___
CloseAsync(tp);
CloseAsync(fp);
#else
fclose(tp);
fclose(fp);
#endif
}
 
/*
@@ -453,16 +572,21 @@
*
* Skips a line in a database file "fp".
*/
 
#if defined ___AsyncIO___
void SkipDatabaseLine(struct AsyncFile *fp) {
LONG c;
while((c = ReadCharAsync(fp)) != -1) {
#else
void SkipDatabaseLine(FILE *fp) {
char c;
 
while(fscanf(fp, "%c", &c) == 1) {
if(c == '\n') {
break;
#endif
switch(c) {
case '\n':
return;
}
}
 
return;
}
 
/*
@@ -469,8 +593,13 @@
*
* Reads a line from the database file "fp".
*/
#if defined ___AsyncIO___
char *ReadDatabaseLine(struct AsyncFile *fp) {
LONG c;
#else
char *ReadDatabaseLine(FILE *fp) {
char c;
#endif
char *line;
int line_size;
int i;
@@ -479,7 +608,11 @@
line = malloc(line_size * sizeof(*line));
 
i = 0;
#if defined ___AsyncIO___
while(run && (c = ReadCharAsync(fp)) != -1) {
#else
while(run && fscanf(fp, "%c", &c) == 1) {
#endif
#if defined ___AmigaOS___
// Check if CTRL+C was pressed and abort the program.
if(SetSignal(0L, SIGBREAKF_CTRL_C) & SIGBREAKF_CTRL_C) {
@@ -489,7 +622,14 @@
switch(c) {
case '\n':
// Rewind the file by the number of read characters.
#if defined ___AsyncIO___
if(SeekAsync(fp, -(i + 1), MODE_CURRENT) == -1) {
fprintf(stderr, "Could not seek in file.\n");
return NULL;
}
#else
fseek(fp, -(i + 1), SEEK_CUR);
#endif
return line;
default:
if(strlen(line) == line_size) {
@@ -512,8 +652,13 @@
* Merges temporary files "tmpNames" into a database "dbFile".
*/
void MergeDatabase(char *dbFile, char **tmpNames, int files, int lines) {
#if defined ___AsyncIO___
struct AsyncFile *fp;
struct AsyncFile **tp;
#else
FILE *fp;
FILE **tp;
#endif
int i;
int j;
char *tmp;
@@ -520,7 +665,11 @@
char *min;
int count;
 
#if defined ___AsyncIO___
if((fp = OpenAsync(dbFile, MODE_READ|MODE_WRITE, ASYNC_BUF)) == NULL) {
#else
if((fp = fopen(dbFile, "w+")) == NULL) {
#endif
fprintf(stderr, "Unable to open gather database for writing.\n");
return;
}
@@ -530,12 +679,20 @@
 
// Open all temporary files for reading.
for(i = 0; i < files; ++i) {
#if defined ___AsyncIO___
if((tp[i] = OpenAsync(tmpNames[i], MODE_READ, ASYNC_BUF)) == NULL) {
#else
if((tp[i] = fopen(tmpNames[i], "r")) == NULL) {
#endif
fprintf(stderr, "Unable to open temporary file '%s' for reading.\n", tmpNames[i]);
// Close all temporary files.
--i;
while(i >= 0) {
#if defined ___AsyncIO___
CloseAsync(tp[i]);
#else
fclose(tp[i]);
#endif
}
return;
}
@@ -585,7 +742,12 @@
 
// Write the smallest line.
if(min != NULL) {
#if defined ___AsyncIO___
WriteAsync(fp, min, (LONG)(strlen(min) * sizeof(char)));
WriteAsync(fp, "\n", 1 * sizeof(char));
#else
fprintf(fp, "%s\n", min);
#endif
free(min);
}
}
@@ -596,13 +758,22 @@
if(tmp == NULL) {
continue;
}
#if defined ___AsyncIO___
WriteAsync(fp, tmp, (LONG)(strlen(tmp) * sizeof(char)));
WriteAsync(fp, "\n", 1 * sizeof(char));
#else
fprintf(fp, "%s\n", tmp);
#endif
free(tmp);
}
 
// Close and delete all temporary files.
for(i = 0; i < files; ++i) {
#if defined ___AsyncIO___
CloseAsync(tp[i]);
#else
fclose(tp[i]);
#endif
// Delete temporary file.
remove(tmpNames[i]);
}
@@ -611,7 +782,11 @@
fprintf(stdout, "\n");
}
 
#if defined ___AsyncIO___
CloseAsync(fp);
#else
fclose(fp);
#endif
}
 
/*
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/HuntnGather/Gather/Gather.c.info
/trunk/HuntnGather/Gather/Gather.link
@@ -6,91 +6,91 @@
-
5,2,164,4,bss
"Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o"
0,0,496,5424,code_68k
0,0,496,5696,code_68k
1,1,0,72,data
-
-
-
"Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/StringStack.o"
0,0,5920,532,code_68k
0,0,6192,560,code_68k
-
-
-
-
"Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/getopt.o"
0,0,6452,632,code_68k
0,0,6752,652,code_68k
1,1,72,16,data
-
-
-
5,2,168,4,bss
"Workbench:Software/Coding/StormC/Lib/stormgcc020.lib"
10,0,7084,128,code_68k
"Workbench:Software/Coding/StormC/Lib/stormgcc.lib"
10,0,7404,128,code_68k
-
-
-
-
15,0,7212,20,code_68k
15,0,7532,20,code_68k
-
-
-
-
20,0,7232,228,code_68k
20,0,7552,228,code_68k
-
-
-
-
25,0,7460,48,code_68k
25,0,7780,48,code_68k
-
-
-
-
30,0,7508,40,code_68k
30,0,7828,40,code_68k
-
-
-
-
35,0,7548,816,code_68k
35,0,7868,852,code_68k
-
-
-
-
40,0,8372,60,code_68k
40,0,8728,60,code_68k
-
-
-
-
45,0,8432,380,code_68k
45,0,8788,380,code_68k
-
-
-
-
50,0,8812,104,code_68k
50,0,9168,104,code_68k
-
-
-
-
55,0,8916,324,code_68k
55,0,9272,324,code_68k
-
-
-
-
60,0,9240,36,code_68k
60,0,9596,36,code_68k
-
-
-
-
65,0,9276,492,code_68k
65,0,9632,492,code_68k
-
-
-
-
85,0,9768,72,code_68k
85,0,10124,72,code_68k
-
-
-
-
105,0,9840,116,code_68k
105,0,10196,120,code_68k
-
-
-
@@ -101,67 +101,62 @@
-
-
125,2,172,4,bss
126,0,9956,120,code_68k
126,0,10316,120,code_68k
-
-
-
-
146,0,10076,112,code_68k
146,0,10436,116,code_68k
-
-
-
-
166,0,10188,100,code_68k
166,0,10552,104,code_68k
-
-
-
-
176,0,10288,172,code_68k
176,0,10656,172,code_68k
-
-
-
-
181,0,10460,3452,code_68k
181,0,10828,3512,code_68k
-
183,2,176,1024,bss
-
-
186,0,13912,40,code_68k
186,0,14340,40,code_68k
-
-
-
-
211,0,13952,40,code_68k
216,0,14380,36,code_68k
-
-
-
-
216,0,13992,36,code_68k
247,0,14416,28,code_68k
-
-
-
-
247,0,14028,28,code_68k
292,0,14444,24,code_68k
-
-
-
-
292,0,14056,24,code_68k
297,0,14468,212,code_68k
-
-
-
-
297,0,14080,212,code_68k
-
-
-
-
302,2,1200,16,bss
303,2,1216,12,bss
304,2,1228,4,bss
305,2,1232,48,bss
306,2,1280,48,bss
307,0,14292,192,code_68k
307,0,14680,192,code_68k
-
-
-
@@ -171,275 +166,287 @@
314,2,1384,4,bss
315,2,1388,4,bss
316,2,1392,48,bss
322,0,14484,88,code_68k
322,0,14872,88,code_68k
323,1,88,376,data
-
-
-
350,0,14572,444,code_68k
350,0,14960,444,code_68k
-
-
-
-
355,0,15016,1332,code_68k
355,0,15404,1388,code_68k
-
-
-
-
360,0,16348,292,code_68k
360,0,16792,292,code_68k
-
-
-
-
365,2,1440,176,bss
376,0,16640,396,code_68k
376,0,17084,404,code_68k
-
-
-
-
381,0,17036,156,code_68k
381,0,17488,160,code_68k
-
-
-
-
391,0,17192,44,code_68k
391,0,17648,44,code_68k
-
-
-
-
411,0,17236,584,code_68k
411,0,17692,596,code_68k
-
-
-
-
426,0,17820,88,code_68k
426,0,18288,88,code_68k
-
-
-
-
431,0,17908,40,code_68k
431,0,18376,40,code_68k
-
-
-
-
446,0,17948,44,code_68k
446,0,18416,44,code_68k
-
-
-
-
471,0,17992,184,code_68k
471,0,18460,184,code_68k
-
-
-
-
476,0,18176,108,code_68k
476,0,18644,112,code_68k
477,1,464,24,data
-
-
-
481,0,18284,56,code_68k
481,0,18756,56,code_68k
-
-
-
-
491,0,18340,620,code_68k
491,0,18812,616,code_68k
-
-
-
-
496,0,18960,220,code_68k
496,0,19428,220,code_68k
497,1,488,280,data
-
-
-
528,0,19180,92,code_68k
528,0,19648,100,code_68k
-
-
-
-
533,0,19272,136,code_68k
533,0,19748,136,code_68k
-
-
-
-
538,0,19408,68,code_68k
538,0,19884,68,code_68k
-
-
-
-
543,0,19476,60,code_68k
543,0,19952,60,code_68k
-
-
-
-
553,0,19536,348,code_68k
553,0,20012,348,code_68k
-
-
-
-
558,0,19884,24,code_68k
558,0,20360,24,code_68k
-
-
-
-
604,0,19908,192,code_68k
604,0,20384,200,code_68k
-
-
-
-
609,0,20100,3436,code_68k
609,0,20584,3412,code_68k
-
-
-
-
619,0,23536,116,code_68k
619,0,23996,116,code_68k
-
621,2,1616,1024,bss
-
-
654,0,23652,212,code_68k
654,0,24112,212,code_68k
-
-
-
-
"Workbench:Software/Coding/StormC/Lib/amiga.lib"
456,0,23864,16,code_68k
457,0,23880,16,code_68k
481,0,23896,20,code_68k
551,0,23916,28,code_68k
602,0,23944,20,code_68k
604,0,23964,28,code_68k
615,0,23992,28,code_68k
646,0,24020,24,code_68k
648,0,24044,24,code_68k
662,0,24068,20,code_68k
682,0,24088,20,code_68k
702,0,24108,24,code_68k
1152,0,24132,32,code_68k
"Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib"
0,0,24164,36,code_68k
6,0,24200,28,code_68k
7,0,24228,28,code_68k
8,0,24256,28,code_68k
9,0,24284,28,code_68k
456,0,24324,16,code_68k
457,0,24340,16,code_68k
481,0,24356,20,code_68k
551,0,24376,28,code_68k
602,0,24404,20,code_68k
604,0,24424,28,code_68k
615,0,24452,28,code_68k
646,0,24480,24,code_68k
648,0,24504,24,code_68k
662,0,24528,20,code_68k
682,0,24548,20,code_68k
702,0,24568,24,code_68k
1152,0,24592,32,code_68k
"Workbench:Software/Coding/StormC/Lib/asyncio000.lib"
0,0,24624,2136,code_68k
-
11,0,24312,28,code_68k
12,0,24340,24,code_68k
13,0,24364,24,code_68k
14,0,24388,24,code_68k
15,0,24412,24,code_68k
-
17,0,24436,24,code_68k
-
-
"Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib"
0,0,26760,36,code_68k
6,0,26796,28,code_68k
7,0,26824,28,code_68k
8,0,26852,28,code_68k
9,0,26880,28,code_68k
-
11,0,26908,28,code_68k
12,0,26936,24,code_68k
13,0,26960,24,code_68k
14,0,26984,24,code_68k
15,0,27008,24,code_68k
-
17,0,27032,24,code_68k
-
-
24,0,24460,24,code_68k
-
-
-
-
24,0,27056,24,code_68k
-
-
-
32,0,24484,28,code_68k
38,0,24512,1044,code_68k
-
-
-
-
32,0,27080,28,code_68k
38,0,27108,1096,code_68k
-
44,0,25556,24,code_68k
-
-
-
-
49,0,25580,40,code_68k
44,0,28204,24,code_68k
-
-
-
-
54,0,25620,44,code_68k
49,0,28228,44,code_68k
-
-
-
-
59,0,25664,652,code_68k
54,0,28272,52,code_68k
-
-
-
-
69,0,26316,2620,code_68k
59,0,28324,660,code_68k
-
-
-
-
69,0,28984,2636,code_68k
70,1,768,192,data
-
-
-
"Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib"
"Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib"
-
-
2,0,28936,8,code_68k
3,0,28944,4,code_68k
9,0,28948,512,code_68k
2,0,31620,8,code_68k
3,0,31628,4,code_68k
9,0,31632,524,code_68k
-
11,2,2640,520,bss
-
-
69,0,29460,116,code_68k
69,0,32156,88,code_68k
70,1,960,8,data
-
71,2,3160,4,bss
-
-
104,0,29576,148,code_68k
105,1,960,8,data
104,0,32244,152,code_68k
105,1,968,8,data
-
-
-
114,0,29724,124,code_68k
114,0,32396,96,code_68k
115,1,976,4,data
-
116,2,3164,4,bss
-
-
134,0,29848,576,code_68k
135,1,968,4,data
134,0,32492,596,code_68k
135,1,980,4,data
-
-
-
164,0,30424,128,code_68k
164,0,33088,100,code_68k
165,1,984,4,data
-
166,2,3168,4,bss
-
-
169,0,30552,132,code_68k
169,0,33188,104,code_68k
170,1,988,4,data
-
171,2,3172,4,bss
-
-
174,0,30684,128,code_68k
174,0,33292,100,code_68k
175,1,992,4,data
-
176,2,3176,4,bss
-
-
-
220,1,972,4,data
220,1,996,4,data
-
-
-
"Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib"
6,0,30812,100,code_68k
"Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib"
0,0,33392,40,code_68k
1,0,33432,132,code_68k
2,0,33564,128,code_68k
-
-
-
6,0,33692,100,code_68k
-
19,0,30912,28,code_68k
-
-
-
19,0,33792,28,code_68k
-
39,0,30940,2376,code_68k
-
-
-
39,0,33820,2764,code_68k
-
!0,5564 ; _main
-
-
-
!0,5822 ; _main
/trunk/HuntnGather/Gather/Gather.map
@@ -25,7 +25,7 @@
M68K Code
 
 
Hunk #0 ( Far Public ) 33316 Bytes (0x8224)
Hunk #0 ( Far Public ) 36584 Bytes (0x8ee8)
__startup68K = 384 (0x180) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/startups/gccstartup.o
__cleanup = 396 (0x18c) referenced 1 times
@@ -40,448 +40,470 @@
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_compare = 510 (0x1fe) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_SortDatabase = 712 (0x2c8) unused, maybe local
_SortDatabase = 704 (0x2c0) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_UpdateDatabase = 1486 (0x5ce) unused, maybe local
_UpdateDatabase = 1516 (0x5ec) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_GetDatabaseSize = 2044 (0x7fc) unused, maybe local
_GetDatabaseSize = 2134 (0x856) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_CountDatabaseLines = 2150 (0x866) unused, maybe local
_CountDatabaseLines = 2244 (0x8c4) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_CreateTempFiles = 2334 (0x91e) unused, maybe local
_CreateTempFiles = 2414 (0x96e) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_WriteTempFiles = 2772 (0xad4) unused, maybe local
_WriteTempFiles = 2862 (0xb2e) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_SkipDatabaseLine = 3342 (0xd0e) unused, maybe local
_SkipDatabaseLine = 3436 (0xd6c) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_ReadDatabaseLine = 3402 (0xd4a) unused, maybe local
_ReadDatabaseLine = 3512 (0xdb8) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_MergeDatabase = 3786 (0xeca) unused, maybe local
_MergeDatabase = 3916 (0xf4c) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_Gather = 4542 (0x11be) unused, maybe local
_Gather = 4764 (0x129c) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_usage = 5238 (0x1476) unused, maybe local
_usage = 5474 (0x1562) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_main = 5564 (0x15bc) referenced 2 times
_main = 5822 (0x16be) referenced 2 times
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_stringStackCreate = 5920 (0x1720) referenced 1 times
_stringStackCreate = 6192 (0x1830) referenced 1 times
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/StringStack.o
_stringStackClear = 5982 (0x175e) unused, maybe local
_stringStackClear = 6254 (0x186e) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/StringStack.o
_stringStackPush = 6012 (0x177c) referenced 2 times
_stringStackPush = 6284 (0x188c) referenced 2 times
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/StringStack.o
_stringStackPop = 6142 (0x17fe) referenced 1 times
_stringStackPop = 6418 (0x1912) referenced 1 times
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/StringStack.o
_stringStackDestroy = 6268 (0x187c) unused, maybe local
_stringStackDestroy = 6554 (0x199a) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/StringStack.o
_stringStackPrint = 6362 (0x18da) unused, maybe local
_stringStackPrint = 6648 (0x19f8) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/StringStack.o
_getopt = 6452 (0x1934) referenced 1 times
_getopt = 6752 (0x1a60) referenced 1 times
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/getopt.o
_amigaclose = 7084 (0x1bac) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigaeof = 7212 (0x1c2c) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigaflush = 7232 (0x1c40) referenced 10 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigagetc = 7460 (0x1d24) referenced 6 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigagetcunget = 7508 (0x1d54) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigaopen = 7596 (0x1dac) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigaputc = 8372 (0x20b4) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigaread = 8432 (0x20f0) referenced 8 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigareadunget = 8812 (0x226c) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigaseek = 8916 (0x22d4) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigaungetc = 9240 (0x2418) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_amigawrite = 9276 (0x243c) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_bzero = 9768 (0x2628) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_closedir = 9840 (0x2670) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_fclose = 9956 (0x26e4) referenced 12 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_fflush = 10076 (0x275c) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_fileno = 10188 (0x27cc) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_fopen = 10288 (0x2830) referenced 11 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
___putfilech = 10856 (0x2a68) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
___putstringch = 10884 (0x2a84) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
___putfilestr = 10910 (0x2a9e) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
___putstringstr = 10938 (0x2aba) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
___getfilech = 10994 (0x2af2) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
___getstringch = 11014 (0x2b06) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
___ungetfilech = 11040 (0x2b20) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
___ungetstringch = 11068 (0x2b3c) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_formatted_out = 11090 (0x2b52) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_formatted_in = 12822 (0x3216) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_fprintf = 13912 (0x3658) referenced 28 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_fscanf = 13952 (0x3680) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_fseek = 13992 (0x36a8) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_ftell = 14028 (0x36cc) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_index = 14056 (0x36e8) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_INIT_5_InitFiles = 14080 (0x3700) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_EXIT_5_InitFiles = 14168 (0x3758) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_INIT_8_UnixStuff = 14292 (0x37d4) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_EXIT_8_UnixStuff = 14394 (0x383a) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
___ioErr = 14484 (0x3894) referenced 6 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_memcpy = 14572 (0x38ec) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_memmove = 14602 (0x390a) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_memcmp = 14656 (0x3940) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_memchr = 14716 (0x397c) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_memset = 14754 (0x39a2) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_bcmp = 14788 (0x39c4) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_bcopy = 14848 (0x3a00) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_ffs = 14980 (0x3a84) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_malloc = 15556 (0x3cc4) referenced 22 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_free = 16084 (0x3ed4) referenced 27 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_calloc = 16102 (0x3ee6) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_realloc = 16178 (0x3f32) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_INIT_4_MixedMem = 16348 (0x3fdc) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_EXIT_4_MixedMem = 16504 (0x4078) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
___setNextFreeHandleNum = 16640 (0x4100) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_open = 16884 (0x41f4) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_opendir = 17036 (0x428c) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_printf = 17192 (0x4328) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_qsort = 17720 (0x4538) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_readdir = 17820 (0x459c) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_remove = 17908 (0x45f4) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_rewinddir = 17948 (0x461c) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_setvbuf = 17992 (0x4648) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_signal = 18184 (0x4708) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_raise = 18228 (0x4734) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_abort = 18270 (0x475e) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_sprintf = 18284 (0x476c) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_lstat = 18340 (0x47a4) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_stat = 18358 (0x47b6) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_INIT_6_InitStdIOFiles = 18960 (0x4a10) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_EXIT_6_InitStdIOFiles = 19136 (0x4ac0) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strchr = 19180 (0x4aec) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strrchr = 19226 (0x4b1a) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strcmp = 19272 (0x4b48) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strncmp = 19328 (0x4b80) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strcpy = 19408 (0x4bd0) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strncpy = 19432 (0x4be8) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strdup = 19476 (0x4c14) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_stricmp = 19536 (0x4c50) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strnicmp = 19644 (0x4cbc) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strlwr = 19780 (0x4d44) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strupr = 19832 (0x4d78) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_strlen = 19884 (0x4dac) referenced 17 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_tmpnam = 19916 (0x4dcc) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_tmpfile = 20058 (0x4e5a) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_signed_out = 20100 (0x4e84) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_signed_out_l = 20776 (0x5128) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_unsigned_out = 20860 (0x517c) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_unsigned_out_l = 21508 (0x5404) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_char_out = 22022 (0x5606) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_string_out = 22188 (0x56ac) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_int_in = 22378 (0x576a) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_char_in = 23238 (0x5ac6) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_string_in = 23360 (0x5b40) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_UnixToAmigaPath = 23536 (0x5bf0) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_InitXSemaphore = 23652 (0x5c64) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_FreeXSemaphore = 23746 (0x5cc2) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_ObtainXSemaphore = 23794 (0x5cf2) referenced 12 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_ReleaseXSemaphore = 23828 (0x5d14) referenced 13 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
Input = 23864 (0x5d38) unused, maybe local
_amigaclose = 7404 (0x1cec) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigaeof = 7532 (0x1d6c) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigaflush = 7552 (0x1d80) referenced 10 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigagetc = 7780 (0x1e64) referenced 6 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigagetcunget = 7828 (0x1e94) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigaopen = 7916 (0x1eec) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigaputc = 8728 (0x2218) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigaread = 8788 (0x2254) referenced 8 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigareadunget = 9168 (0x23d0) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigaseek = 9272 (0x2438) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigaungetc = 9596 (0x257c) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_amigawrite = 9632 (0x25a0) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_bzero = 10124 (0x278c) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_closedir = 10196 (0x27d4) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_fclose = 10316 (0x284c) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_fflush = 10436 (0x28c4) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_fileno = 10552 (0x2938) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_fopen = 10656 (0x29a0) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___putfilech = 11226 (0x2bda) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___putstringch = 11254 (0x2bf6) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___putfilestr = 11280 (0x2c10) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___putstringstr = 11308 (0x2c2c) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___getfilech = 11364 (0x2c64) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___getstringch = 11384 (0x2c78) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___ungetfilech = 11410 (0x2c92) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___ungetstringch = 11438 (0x2cae) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_formatted_out = 11460 (0x2cc4) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_formatted_in = 13238 (0x33b6) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_fprintf = 14340 (0x3804) referenced 29 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_fseek = 14380 (0x382c) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_ftell = 14416 (0x3850) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_index = 14444 (0x386c) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_INIT_5_InitFiles = 14468 (0x3884) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_EXIT_5_InitFiles = 14556 (0x38dc) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_INIT_8_UnixStuff = 14680 (0x3958) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_EXIT_8_UnixStuff = 14782 (0x39be) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___ioErr = 14872 (0x3a18) referenced 6 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_memcpy = 14960 (0x3a70) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_memmove = 14990 (0x3a8e) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_memcmp = 15044 (0x3ac4) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_memchr = 15104 (0x3b00) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_memset = 15142 (0x3b26) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_bcmp = 15176 (0x3b48) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_bcopy = 15236 (0x3b84) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_ffs = 15368 (0x3c08) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_malloc = 15972 (0x3e64) referenced 22 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_free = 16510 (0x407e) referenced 27 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_calloc = 16528 (0x4090) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_realloc = 16620 (0x40ec) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_INIT_4_MixedMem = 16792 (0x4198) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_EXIT_4_MixedMem = 16948 (0x4234) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___setNextFreeHandleNum = 17084 (0x42bc) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_open = 17336 (0x43b8) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_opendir = 17488 (0x4450) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_printf = 17648 (0x44f0) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_qsort = 18186 (0x470a) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_readdir = 18288 (0x4770) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_remove = 18376 (0x47c8) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_rewinddir = 18416 (0x47f0) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_setvbuf = 18460 (0x481c) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_signal = 18652 (0x48dc) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_raise = 18696 (0x4908) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_abort = 18740 (0x4934) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_sprintf = 18756 (0x4944) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_lstat = 18812 (0x497c) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_stat = 18830 (0x498e) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_INIT_6_InitStdIOFiles = 19428 (0x4be4) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_EXIT_6_InitStdIOFiles = 19604 (0x4c94) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strchr = 19648 (0x4cc0) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strrchr = 19696 (0x4cf0) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strcmp = 19748 (0x4d24) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strncmp = 19804 (0x4d5c) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strcpy = 19884 (0x4dac) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strncpy = 19908 (0x4dc4) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strdup = 19952 (0x4df0) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_stricmp = 20012 (0x4e2c) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strnicmp = 20120 (0x4e98) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strlwr = 20256 (0x4f20) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strupr = 20308 (0x4f54) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_strlen = 20360 (0x4f88) referenced 21 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_tmpnam = 20392 (0x4fa8) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_tmpfile = 20538 (0x503a) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_signed_out = 20584 (0x5068) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_signed_out_l = 21262 (0x530e) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_unsigned_out = 21348 (0x5364) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_unsigned_out_l = 21998 (0x55ee) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_char_out = 22558 (0x581e) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_string_out = 22730 (0x58ca) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_int_in = 22922 (0x598a) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_char_in = 23672 (0x5c78) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_string_in = 23796 (0x5cf4) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_UnixToAmigaPath = 23996 (0x5dbc) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_InitXSemaphore = 24112 (0x5e30) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_FreeXSemaphore = 24206 (0x5e8e) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_ObtainXSemaphore = 24254 (0x5ebe) referenced 12 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_ReleaseXSemaphore = 24288 (0x5ee0) referenced 13 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
Input = 24324 (0x5f04) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_Input = 23864 (0x5d38) referenced 1 times
_Input = 24324 (0x5f04) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
Output = 23880 (0x5d48) unused, maybe local
Output = 24340 (0x5f14) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_Output = 23880 (0x5d48) referenced 1 times
_Output = 24340 (0x5f14) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
IsInteractive = 23896 (0x5d58) unused, maybe local
IsInteractive = 24356 (0x5f24) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_IsInteractive = 23896 (0x5d58) referenced 1 times
_IsInteractive = 24356 (0x5f24) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
GetProgramName = 23916 (0x5d6c) unused, maybe local
GetProgramName = 24376 (0x5f38) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_GetProgramName = 23916 (0x5d6c) referenced 1 times
_GetProgramName = 24376 (0x5f38) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
FilePart = 23944 (0x5d88) unused, maybe local
FilePart = 24404 (0x5f54) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_FilePart = 23944 (0x5d88) referenced 1 times
_FilePart = 24404 (0x5f54) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
AddPart = 23964 (0x5d9c) unused, maybe local
AddPart = 24424 (0x5f68) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_AddPart = 23964 (0x5d9c) referenced 1 times
_AddPart = 24424 (0x5f68) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
VPrintf = 23992 (0x5db8) unused, maybe local
VPrintf = 24452 (0x5f84) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_VPrintf = 23992 (0x5db8) referenced 1 times
_VPrintf = 24452 (0x5f84) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
AllocMem = 24020 (0x5dd4) unused, maybe local
AllocMem = 24480 (0x5fa0) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_AllocMem = 24020 (0x5dd4) referenced 1 times
_AllocMem = 24480 (0x5fa0) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
FreeMem = 24044 (0x5dec) unused, maybe local
FreeMem = 24504 (0x5fb8) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_FreeMem = 24044 (0x5dec) referenced 1 times
_FreeMem = 24504 (0x5fb8) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
FindTask = 24068 (0x5e04) unused, maybe local
FindTask = 24528 (0x5fd0) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_FindTask = 24068 (0x5e04) referenced 1 times
_FindTask = 24528 (0x5fd0) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
CloseLibrary = 24088 (0x5e18) unused, maybe local
CloseLibrary = 24548 (0x5fe4) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_CloseLibrary = 24088 (0x5e18) referenced 1 times
_CloseLibrary = 24548 (0x5fe4) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
OpenLibrary = 24108 (0x5e2c) unused, maybe local
OpenLibrary = 24568 (0x5ff8) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_OpenLibrary = 24108 (0x5e2c) referenced 1 times
_OpenLibrary = 24568 (0x5ff8) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
EasyRequest = 24132 (0x5e44) unused, maybe local
EasyRequest = 24592 (0x6010) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_EasyRequest = 24132 (0x5e44) referenced 1 times
_EasyRequest = 24592 (0x6010) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/amiga.lib
_setjmp = 24164 (0x5e64) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_longjmp = 24178 (0x5e72) referenced 3 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___muldf3 = 24200 (0x5e88) referenced 18 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___divdf3 = 24228 (0x5ea4) referenced 8 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___adddf3 = 24256 (0x5ec0) referenced 8 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___subdf3 = 24284 (0x5edc) referenced 7 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___eqdf2 = 24312 (0x5ef8) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___nedf2 = 24312 (0x5ef8) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___gtdf2 = 24312 (0x5ef8) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___gedf2 = 24312 (0x5ef8) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___ltdf2 = 24312 (0x5ef8) referenced 6 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___ledf2 = 24312 (0x5ef8) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___floatsidf = 24340 (0x5f14) referenced 7 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___fixdfsi = 24364 (0x5f2c) referenced 7 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___extendsfdf2 = 24388 (0x5f44) referenced 3 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___truncdfsf2 = 24412 (0x5f5c) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_floor = 24436 (0x5f74) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_atan = 24460 (0x5f8c) referenced 5 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_pow = 24484 (0x5fa4) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___extendsfdf2 = 24512 (0x5fc0) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___truncdfsf2 = 24592 (0x6010) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___fixdfsi = 24700 (0x607c) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___fixunsdfsi = 24816 (0x60f0) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___fixunsdfdi = 24914 (0x6152) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___fixdfdi = 25162 (0x624a) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___fixunssfsi = 25242 (0x629a) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___floatsidf = 25266 (0x62b2) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___floatdidf = 25380 (0x6324) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___fixsfsi = 25506 (0x63a2) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___floatsisf = 25530 (0x63ba) referenced 4 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
___divsf3 = 25556 (0x63d4) referenced 3 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_isinf = 25580 (0x63ec) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_isnan = 25620 (0x6414) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_atan2 = 25664 (0x6440) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_ldexp = 26040 (0x65b8) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_frexp = 26112 (0x6600) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_modf = 26196 (0x6654) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_double_out = 26770 (0x6892) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_double_in = 28234 (0x6e4a) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_va_putd = 28848 (0x70b0) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc020.lib
_wbmain__FP9WBStartup = 28936 (0x7108) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
wbmain(WBStartup *) = 28936 (0x7108) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_wbmain = 28944 (0x7110) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
__gcc_main__ = 28958 (0x711e) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_EXIT_0_Main = 29418 (0x72ea) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_INIT_1_DOSBaseDOS_c = 29538 (0x7362) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_EXIT_1_DOSBaseDOS_c = 29558 (0x7376) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_InitModules = 29576 (0x7388) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_CleanupModules = 29656 (0x73d8) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_INIT_1_IntuitionBaseIntuition_c = 29808 (0x7470) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_EXIT_1_IntuitionBaseIntuition_c = 29828 (0x7484) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
___8LibBaseCPcUls = 29986 (0x7522) referenced 5 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
__$_8LibBaseC = 30344 (0x7688) referenced 5 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_version__C8LibBaseC = 30396 (0x76bc) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_INIT_2_MathIeeeDoubBasBaseMI_EDB_c = 30514 (0x7732) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_EXIT_2_MathIeeeDoubBasBaseMI_EDB_c = 30534 (0x7746) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_INIT_2_MathIeeeDoubTransBaseMI_EDT_c = 30644 (0x77b4) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_EXIT_2_MathIeeeDoubTransBaseMI_EDT_c = 30664 (0x77c8) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_INIT_2_MathIeeeSingBasBaseMI_ESB_c = 30774 (0x7836) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_EXIT_2_MathIeeeSingBasBaseMI_ESB_c = 30794 (0x784a) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
___builtin_delete = 30822 (0x7866) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___builtin_vec_delete = 30844 (0x787c) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___dl__FPvRC9nothrow_t = 30866 (0x7892) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___vd__FPvRC9nothrow_t = 30888 (0x78a8) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
_exit = 30912 (0x78c0) referenced 4 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___udivmoddi4 = 30940 (0x78dc) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___negdi2 = 32062 (0x7d3e) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___lshrdi3 = 32102 (0x7d66) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___ashldi3 = 32180 (0x7db4) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___ashrdi3 = 32256 (0x7e00) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___ffsdi2 = 32338 (0x7e52) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___cmpdi2 = 32398 (0x7e8e) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___ucmpdi2 = 32452 (0x7ec4) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___muldi3 = 32506 (0x7efa) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___divdi3 = 32650 (0x7f8a) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___moddi3 = 32810 (0x802a) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___umoddi3 = 32978 (0x80d2) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___udivdi3 = 33018 (0x80fa) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
___udiv_w_sdiv = 33048 (0x8118) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport020.lib
_OpenAsync = 24946 (0x6172) referenced 8 times
File Workbench:Software/Coding/StormC/Lib/asyncio000.lib
_CloseAsync = 25596 (0x63fc) referenced 8 times
File Workbench:Software/Coding/StormC/Lib/asyncio000.lib
_ReadAsync = 25732 (0x6484) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/asyncio000.lib
_ReadCharAsync = 25960 (0x6568) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/asyncio000.lib
_WriteAsync = 26034 (0x65b2) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/asyncio000.lib
_WriteCharAsync = 26230 (0x6676) referenced 2 times
File Workbench:Software/Coding/StormC/Lib/asyncio000.lib
_SeekAsync = 26288 (0x66b0) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/asyncio000.lib
_setjmp = 26760 (0x6888) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_longjmp = 26774 (0x6896) referenced 3 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___muldf3 = 26796 (0x68ac) referenced 18 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___divdf3 = 26824 (0x68c8) referenced 8 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___adddf3 = 26852 (0x68e4) referenced 8 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___subdf3 = 26880 (0x6900) referenced 7 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___eqdf2 = 26908 (0x691c) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___nedf2 = 26908 (0x691c) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___gtdf2 = 26908 (0x691c) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___gedf2 = 26908 (0x691c) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___ltdf2 = 26908 (0x691c) referenced 6 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___ledf2 = 26908 (0x691c) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___floatsidf = 26936 (0x6938) referenced 7 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___fixdfsi = 26960 (0x6950) referenced 7 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___extendsfdf2 = 26984 (0x6968) referenced 3 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___truncdfsf2 = 27008 (0x6980) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_floor = 27032 (0x6998) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_atan = 27056 (0x69b0) referenced 5 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_pow = 27080 (0x69c8) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___extendsfdf2 = 27108 (0x69e4) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___truncdfsf2 = 27194 (0x6a3a) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___fixdfsi = 27316 (0x6ab4) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___fixunsdfsi = 27444 (0x6b34) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___fixunsdfdi = 27554 (0x6ba2) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___fixdfdi = 27804 (0x6c9c) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___fixunssfsi = 27884 (0x6cec) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___floatsidf = 27908 (0x6d04) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___floatdidf = 28026 (0x6d7a) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___fixsfsi = 28154 (0x6dfa) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___floatsisf = 28178 (0x6e12) referenced 4 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
___divsf3 = 28204 (0x6e2c) referenced 3 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_isinf = 28228 (0x6e44) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_isnan = 28272 (0x6e70) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_atan2 = 28324 (0x6ea4) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_ldexp = 28700 (0x701c) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_frexp = 28772 (0x7064) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_modf = 28866 (0x70c2) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_double_out = 29440 (0x7300) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_double_in = 30912 (0x78c0) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_va_putd = 31532 (0x7b2c) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/mathgcc000.lib
_wbmain__FP9WBStartup = 31620 (0x7b84) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
wbmain(WBStartup *) = 31620 (0x7b84) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_wbmain = 31628 (0x7b8c) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
__gcc_main__ = 31642 (0x7b9a) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_EXIT_0_Main = 32114 (0x7d72) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_EXIT_1_DOSBaseDOS_c = 32156 (0x7d9c) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_INIT_1_DOSBaseDOS_c = 32200 (0x7dc8) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_InitModules = 32244 (0x7df4) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_CleanupModules = 32326 (0x7e46) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_EXIT_1_IntuitionBaseIntuition_c = 32396 (0x7e8c) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_INIT_1_IntuitionBaseIntuition_c = 32446 (0x7ebe) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
___8LibBaseCPcUls = 32630 (0x7f76) referenced 5 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
__$_8LibBaseC = 33008 (0x80f0) referenced 5 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_version__C8LibBaseC = 33060 (0x8124) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_EXIT_2_MathIeeeDoubBasBaseMI_EDB_c = 33088 (0x8140) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_INIT_2_MathIeeeDoubBasBaseMI_EDB_c = 33144 (0x8178) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_EXIT_2_MathIeeeDoubTransBaseMI_EDT_c = 33188 (0x81a4) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_INIT_2_MathIeeeDoubTransBaseMI_EDT_c = 33246 (0x81de) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_EXIT_2_MathIeeeSingBasBaseMI_ESB_c = 33292 (0x820c) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_INIT_2_MathIeeeSingBasBaseMI_ESB_c = 33348 (0x8244) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
___mulsi3 = 33392 (0x8270) referenced 22 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___udivsi3 = 33432 (0x8298) referenced 11 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___divsi3 = 33520 (0x82f0) referenced 5 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___umodsi3 = 33564 (0x831c) referenced 5 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___modsi3 = 33650 (0x8372) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___builtin_delete = 33702 (0x83a6) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___builtin_vec_delete = 33724 (0x83bc) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___dl__FPvRC9nothrow_t = 33746 (0x83d2) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___vd__FPvRC9nothrow_t = 33768 (0x83e8) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
_exit = 33792 (0x8400) referenced 4 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___negdi2 = 33820 (0x841c) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___lshrdi3 = 33860 (0x8444) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___ashldi3 = 33938 (0x8492) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___ashrdi3 = 34014 (0x84de) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___ffsdi2 = 34096 (0x8530) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___cmpdi2 = 34156 (0x856c) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___ucmpdi2 = 34210 (0x85a2) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___udivmoddi4 = 34264 (0x85d8) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___muldi3 = 35842 (0x8c02) referenced 4 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___divdi3 = 36014 (0x8cae) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___moddi3 = 36120 (0x8d18) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___umoddi3 = 36246 (0x8d96) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___udivdi3 = 36286 (0x8dbe) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
___udiv_w_sdiv = 36316 (0x8ddc) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccsupport000.lib
 
PowerPC Code
 
@@ -489,7 +511,7 @@
Data
 
 
Hunk #1 ( Far Public ) 1068 Bytes (0x42c)
Hunk #1 ( Far Public ) 1092 Bytes (0x444)
_version_string = 0 (0x0) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/Gather.o
_run = 60 (0x3c) unused, maybe local
@@ -503,63 +525,63 @@
_opterr = 80 (0x50) unused, maybe local
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/getopt.o
___sF = 500 (0x1f4) referenced 43 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_std__out = 504 (0x1f8) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_std__in = 592 (0x250) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_std__err = 680 (0x2a8) unused, maybe local
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
__8LibBaseC$not_open = 968 (0x3c8) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
___stacksize = 972 (0x3cc) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
___init_table68k = 976 (0x3d0) referenced 1 times
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
_DOSBase = 960 (0x3c0) referenced 85 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_IntuitionBase = 976 (0x3d0) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
__8LibBaseC$not_open = 980 (0x3d4) unused, maybe local
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_MathIeeeDoubBasBase = 984 (0x3d8) referenced 8 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_MathIeeeDoubTransBase = 988 (0x3dc) referenced 4 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
_MathIeeeSingBasBase = 992 (0x3e0) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
___stacksize = 996 (0x3e4) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup000.lib
___init_table68k = 1000 (0x3e8) referenced 1 times
File <Internal Assembled>
___exit_table68k = 1024 (0x400) referenced 1 times
___exit_table68k = 1048 (0x418) referenced 1 times
File <Internal Assembled>
 
BSS
 
 
Hunk #2 ( Far Public ) 3180 Bytes (0xc6c)
_SysBase = 164 (0xa4) referenced 41 times
Hunk #2 ( Far Public ) 3160 Bytes (0xc58)
_SysBase = 164 (0xa4) referenced 51 times
File Workbench:Software/Coding/StormC/StormSYS/startups/gccstartup.o
_optopt = 168 (0xa8) referenced 3 times
File Workbench:Work/HuntnGather/HuntnGather/Gather/objects_debug/getopt.o
_errno = 172 (0xac) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___fileList = 1200 (0x4b0) referenced 6 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___tmpnamList = 1216 (0x4c0) referenced 5 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___tmpnamNext = 1228 (0x4cc) referenced 3 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___protectFileList = 1232 (0x4d0) referenced 8 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___protectTmpnamList = 1280 (0x500) referenced 4 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___DHBase = 1328 (0x530) referenced 7 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___protectDHBase = 1336 (0x538) referenced 6 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___numHandles = 1384 (0x568) referenced 9 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___handles = 1388 (0x56c) referenced 9 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___protectHandles = 1392 (0x570) referenced 8 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
___mempool = 1440 (0x5a0) referenced 33 times
File Workbench:Software/Coding/StormC/Lib/stormgcc020.lib
_DOSBase = 3160 (0xc58) referenced 59 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_IntuitionBase = 3164 (0xc5c) referenced 2 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_MathIeeeDoubBasBase = 3168 (0xc60) referenced 8 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_MathIeeeDoubTransBase = 3172 (0xc64) referenced 4 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
_MathIeeeSingBasBase = 3176 (0xc68) referenced 1 times
File Workbench:Software/Coding/StormC/StormSYS/lib/stormgccstartup020.lib
File Workbench:Software/Coding/StormC/Lib/stormgcc.lib
 
END