Commit 24589695 authored by Caleb C. Sander's avatar Caleb C. Sander
Browse files

Use inttypes.h

parent 044e42a0
No related merge requests found
Pipeline #89300 failed with stage
Showing with 2 additions and 2 deletions
+2 -2
......@@ -7,8 +7,8 @@
* The AST is a recursive data structure consisting of several types of "nodes".
*/
#include <inttypes.h>
#include <stddef.h>
#include <stdint.h>
/** The types of AST nodes */
typedef enum { NUM, BINARY_OP, VAR, SEQUENCE, PRINT, LET, IF, WHILE } node_type_t;
......
#include <assert.h>
#include <inttypes.h>
#include <math.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment