mirror of
https://github.com/cc65/cc65.git
synced 2025-01-20 09:31:48 +00:00
commit
682fd226ae
@ -36,6 +36,9 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
/* common */
|
||||||
|
#include "print.h"
|
||||||
|
|
||||||
/* ar65 */
|
/* ar65 */
|
||||||
#include "error.h"
|
#include "error.h"
|
||||||
#include "library.h"
|
#include "library.h"
|
||||||
@ -73,8 +76,10 @@ void ListObjFiles (int argc, char* argv [])
|
|||||||
/* Get the entry */
|
/* Get the entry */
|
||||||
O = CollConstAt (&ObjPool, I);
|
O = CollConstAt (&ObjPool, I);
|
||||||
|
|
||||||
|
/* Print the size if verbose */
|
||||||
|
Print (stdout, 1, "%5lu ", O->Size);
|
||||||
/* Print the name */
|
/* Print the name */
|
||||||
printf ("%s\n", O->Name);
|
puts (O->Name);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user