diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-05-06 00:39:44 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-05-06 00:39:44 -0400 |
commit | d8f2c10b7108fff6b7e437291093a1cadc15ab9f (patch) | |
tree | 3fc50a19d6fbb9c94a8fe147cd2a6c4ba7f59b8d /command/printf.c | |
parent | ansii c (diff) | |
download | lazysphere-d8f2c10b7108fff6b7e437291093a1cadc15ab9f.tar.gz lazysphere-d8f2c10b7108fff6b7e437291093a1cadc15ab9f.tar.bz2 lazysphere-d8f2c10b7108fff6b7e437291093a1cadc15ab9f.zip |
refactor
Diffstat (limited to '')
-rw-r--r-- | command/printf.c (renamed from src/commands/printf.c) | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commands/printf.c b/command/printf.c index 519b8a2..99139d0 100644 --- a/src/commands/printf.c +++ b/command/printf.c @@ -1,4 +1,7 @@ -#include "../command.h" +#include "command.h" +#include "lslib.h" + +#include <stdlib.h> static long cast_long(const char* arg) { char* end; |