diff options
author | Bruno Haible <bruno@clisp.org> | 2006-11-07 14:45:38 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:14:20 +0200 |
commit | ab10ad837f82a128ae8c0af09ae9a634fc86a0ab (patch) | |
tree | e38846435f180cce4f04a7fe2ededa26dff0a52c /gnulib-local/modules | |
parent | 865fbbba42c6a099b405746e687db6e22770bcb5 (diff) | |
download | external_gettext-ab10ad837f82a128ae8c0af09ae9a634fc86a0ab.zip external_gettext-ab10ad837f82a128ae8c0af09ae9a634fc86a0ab.tar.gz external_gettext-ab10ad837f82a128ae8c0af09ae9a634fc86a0ab.tar.bz2 |
New module 'ostream': Abstract output stream data type.
Diffstat (limited to 'gnulib-local/modules')
-rw-r--r-- | gnulib-local/modules/ostream | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnulib-local/modules/ostream b/gnulib-local/modules/ostream new file mode 100644 index 0000000..98b0379 --- /dev/null +++ b/gnulib-local/modules/ostream @@ -0,0 +1,28 @@ +Description: +Abstract output stream data type. + +Files: +lib/ostream.oo.h +lib/ostream.oo.c + +Depends-on: +moo + +configure.ac: + +Makefile.am: +lib_SOURCES += ostream.c +ostream.h ostream.c : $(top_srcdir)/build-aux/moopp ostream.oo.h ostream.oo.c + $(top_srcdir)/build-aux/moopp $(srcdir)/ostream.oo.c $(srcdir)/ostream.oo.h +BUILT_SOURCES += ostream.h ostream.c ostream.priv.h ostream.vt.h +CLEANFILES += ostream.h ostream.c ostream.priv.h ostream.vt.h + +Include: +"ostream.h" + +License: +GPL + +Maintainer: +Bruno Haible + |