diff options
-rw-r--r-- | fish/options.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fish/options.h b/fish/options.h index 2b049f2f..f0f5a07a 100644 --- a/fish/options.h +++ b/fish/options.h @@ -105,6 +105,11 @@ struct drv { void (*data_free)(void*); /* function to free 'data' */ } N; }; + + /* Opaque pointer. Not used by the options-parsing code, and so + * available for the program to use for any purpose. + */ + void *opaque; }; struct mp { |