blob: bb3b6c4a83b21dc935836580d2670f1024c66ee2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-af,v 1.1 2008/07/31 03:58:05 bjs Exp $
--- tools/transport.c.orig 2008-07-27 08:50:24.000000000 -0400
+++ tools/transport.c
@@ -29,6 +29,10 @@
#include <jack/jack.h>
#include <jack/transport.h>
+#ifndef whitespace
+#define whitespace(c) (((c) == ' ') || ((c) == '\t'))
+#endif
+
char *package; /* program name */
int done = 0;
jack_client_t *client;
|