aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/util/swrite.cc
diff options
context:
space:
mode:
authorGravatar Alex Chernyakhovsky <achernya@google.com>2023-03-05 17:57:22 -0500
committerGravatar Alex Chernyakhovsky <achernya@mit.edu>2023-07-30 17:03:40 -0400
commit325098ac074bc1bb23625641aa349c68afb04539 (patch)
tree298455eee24489504dfef9581d8933cd71d4a870 /src/util/swrite.cc
parent62869ae55f3a368ad18545ab6d8973bffffb239f (diff)
Switch to fully-qualified #include
Previously, mosh used extensive -I flags and all of the mosh-local makes it really hard to tell what the proper dependency graph is, so instead remove the -I arguments in favvor of $(top_srcdir) and qualify the paths wherever they are used.
Diffstat (limited to 'src/util/swrite.cc')
-rw-r--r--src/util/swrite.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/swrite.cc b/src/util/swrite.cc
index ada96f5..d3c2ba0 100644
--- a/src/util/swrite.cc
+++ b/src/util/swrite.cc
@@ -34,7 +34,7 @@
#include <string.h>
#include <stdio.h>
-#include "swrite.h"
+#include "src/util/swrite.h"
int swrite( int fd, const char *str, ssize_t len )
{