mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
0fea79cc8f
Likely some new bugs were introduced by this change. The long term goal is clean compilation by g++.
23 lines
267 B
C
23 lines
267 B
C
|
|
#ifndef EL__OSDEP_BEOS_BEOS_H
|
|
#define EL__OSDEP_BEOS_BEOS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef CONFIG_OS_BEOS
|
|
|
|
struct terminal;
|
|
|
|
void open_in_new_be(struct terminal *term, char *exe_name,
|
|
char *param);
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|