2004-09-17 Joel Sherrill <joel@OARcorp.com>

PR 677/misc
	* libmisc/dumpbuf/dumpbuf.h, libmisc/fsmount/fsmount.h,
	libmisc/rtmonuse/rtmonuse.h, libmisc/serdbg/serdbg.h,
	libmisc/serdbg/serdbgcnf.h, libmisc/serdbg/termios_printk.h,
	libmisc/serdbg/termios_printk_cnf.h, libmisc/untar/untar.h: Add
	extern C wrappers.
This commit is contained in:
Joel Sherrill
2004-09-17 17:00:19 +00:00
parent 6d380c7aea
commit 6f77f16f7b
9 changed files with 73 additions and 0 deletions

View File

@@ -11,6 +11,9 @@
#ifndef __UNTAR_H__
#define __UNTAR_H__
#ifdef __cplusplus
extern "C" {
#endif
#define UNTAR_SUCCESSFUL 0
#define UNTAR_FAIL 1
@@ -21,5 +24,8 @@
int Untar_FromMemory(unsigned char *tar_buf, unsigned long size);
int Untar_FromFile(char *tar_name);
#ifdef __cplusplus
}
#endif
#endif /* __UNTAR_H__ */