Skip to content

Commit

Permalink
vere: fix pkg includes
Browse files Browse the repository at this point in the history
  • Loading branch information
ripperi committed Oct 3, 2024
1 parent a9c1484 commit bb8bdd8
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion pkg/vere/benchmarks.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "noun.h"
#include "jets/q.h"
#include "ur.h"
#include "ur/ur.h"
#include "vere.h"

/* _setup(): prepare for tests.
Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/boot_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "ivory.h"
#include "noun.h"
#include "ur.h"
#include "ur/ur.h"
#include "vere.h"

/* _setup(): prepare for tests.
Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/db/lmdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include <sys/stat.h>

#include "c3.h"
#include "c3/c3.h"
#include "noun.h"

/* mdb_logerror(): writes an error message and lmdb error code to f.
Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/db/lmdb.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#ifndef U3_VERE_DB_LMDB_H
#define U3_VERE_DB_LMDB_H

#include "c3.h"
#include "c3/c3.h"
#include "lmdb/lmdb.h"

/* lmdb api wrapper
Expand Down
4 changes: 2 additions & 2 deletions pkg/vere/io/ames.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
#include "io/ames/stun.h"

#include "noun.h"
#include "ur.h"
#include "ur/ur.h"

#include "zlib.h"
#include "natpmp.h"

#include <ent.h>
#include "ent/ent.h"

#include <arpa/inet.h>

Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/king.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "ivory.h"
#include "noun.h"
#include "pace.h"
#include "ur.h"
#include "ur/ur.h"
#include "uv.h"
#include "version.h"

Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/lord.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include "vere.h"

#include "noun.h"
#include "ur.h"
#include "ur/ur.h"

#undef LORD_TRACE_JAM
#undef LORD_TRACE_CUE
Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "noun.h"
#include "events.h" // XX remove, see full replay in _cw_play()
#include "ivory.h"
#include "ur.h"
#include "ur/ur.h"
#include "platform/rsignal.h"
#include "vere.h"
#include "sigsegv.h"
Expand Down
4 changes: 2 additions & 2 deletions pkg/vere/mars.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
**
** the main loop of a mars process.
*/
#include "c3.h"
#include "c3/c3.h"
#include "noun.h"
#include "types.h"
#include "vere.h"
#include "ivory.h"
#include "ur.h"
#include "ur/ur.h"
#include "db/lmdb.h"
#include <mars.h>
#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/noun_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "noun.h"
#include "ivory.h"
#include "ur.h"
#include "ur/ur.h"
#include "vere.h"

#define TRUE 1
Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/pier.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// @file

#include "db/lmdb.h"
#include "ent.h"
#include "ent/ent.h"
#include "noun.h"
#include "pace.h"
#include "vere.h"
Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/platform/darwin/ptty.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// @file

#include "c3.h"
#include "c3/c3.h"
#include "noun.h"
#include "vere.h"
#include <sys/ioctl.h>
Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/platform/linux/ptty.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// @file

#include "c3.h"
#include "c3/c3.h"
#include "noun.h"
#include "vere.h"
#include <sys/ioctl.h>
Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/serf.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "vere.h"
#include "ivory.h"
#include "ur.h"
#include "ur/ur.h"

/*
|%
Expand Down
2 changes: 1 addition & 1 deletion pkg/vere/vere.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#ifndef U3_VERE_H
#define U3_VERE_H

#include "c3.h"
#include "c3/c3.h"
#include "db/lmdb.h"
#include "noun.h"
#include "serf.h"
Expand Down

0 comments on commit bb8bdd8

Please sign in to comment.