aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/print.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2026-02-19 23:51:36 -0500
committerBruce Hill <bruce@bruce-hill.com>2026-02-19 23:51:36 -0500
commitfde2d5876236c9048ee1112be90c8af41c910149 (patch)
treec3693473be21dbd7177f234ec2fa9f4b8a1c9d35 /src/stdlib/print.h
parent29b4aa20ae2a75808adbea63373a7f6c21ac9441 (diff)
Paths using C strings
Diffstat (limited to 'src/stdlib/print.h')
-rw-r--r--src/stdlib/print.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/stdlib/print.h b/src/stdlib/print.h
index 943a084a..cec54ff3 100644
--- a/src/stdlib/print.h
+++ b/src/stdlib/print.h
@@ -105,7 +105,6 @@ PRINT_FN _print_repeated_char(FILE *f, repeated_char_t repeated) {
}
extern int Text$print(FILE *stream, Text_t text);
-extern int Path$print(FILE *stream, Path_t path);
extern int Int$print(FILE *f, Int_t i);
#ifndef _fprint1
#define _fprint1(f, x) \
@@ -131,7 +130,6 @@ extern int Int$print(FILE *f, Int_t i);
string_slice_t: _print_string_slice, \
repeated_char_t: _print_repeated_char, \
Text_t: Text$print, \
- Path_t: Path$print, \
Int_t: Int$print, \
void *: _print_pointer)(f, x)
#endif