Reorder include statements for consistency in main.c and usage.c

This commit is contained in:
2025-10-01 01:24:07 +01:00
parent 15ec8c6584
commit bf24a8da3a
2 changed files with 3 additions and 1 deletions

View File

@@ -19,6 +19,7 @@
#include <stdio.h>
#include <string.h>
#include "commands.h"
#include "usage.h"

View File

@@ -17,9 +17,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "usage.h"
#include <stdio.h>
#include "aaruformat.h"
#include "usage.h"
#include "version.h" // Optional if you want a central place for version macros
void print_banner()