1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00
elinks/src/osdep/beos/beos.h
Witold Filipczyk 0fea79cc8f [cflags] Removed -Wno-pointer-sign
Likely some new bugs were introduced by this change.
The long term goal is clean compilation by g++.
2021-01-02 16:20:27 +01:00

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