mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 20:39:18 -04:00
- Update to 2.9 - No longer support disabling SSL in late 2022 - Make NLS optional - Convert to use OPTIONS helpers - Pacify portclippy - Reformat with portfmt
8 lines
276 B
C
8 lines
276 B
C
--- utils.h.orig 2022-10-29 19:34:27 UTC
|
|
+++ utils.h
|
|
@@ -16,4 +16,4 @@ char * format_value(double value, int digits_sig, int
|
|
#define min(x, y) ((x) < (y) ? (x) : (y))
|
|
#define max(x, y) ((x) > (y) ? (x) : (y))
|
|
|
|
-void myusleep(useconds_t v);
|
|
+void myusleep(__useconds_t v);
|