comparison liboctave/wrappers/wait-wrappers.h @ 29231:4e196fbb28a5

Set API tags in files in liboctave/wrappers (patch #8919). Add API tag to (un-defined) functions in headers.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 29 Dec 2020 18:00:43 +0100
parents bd51beb6205e
children 7854d5752dd2
comparison
equal deleted inserted replaced
29230:6b3faa844395 29231:4e196fbb28a5
34 34
35 #if defined __cplusplus 35 #if defined __cplusplus
36 extern "C" { 36 extern "C" {
37 #endif 37 #endif
38 38
39 extern pid_t octave_waitpid_wrapper (pid_t pid, int *statusp, int options); 39 extern OCTAVE_API pid_t
40 octave_waitpid_wrapper (pid_t pid, int *statusp, int options);
40 41
41 extern int octave_wcontinue_wrapper (void); 42 extern OCTAVE_API int octave_wcontinue_wrapper (void);
42 43
43 extern int octave_wcoredump_wrapper (int status); 44 extern OCTAVE_API int octave_wcoredump_wrapper (int status);
44 45
45 extern bool octave_wifcontinued_wrapper (int status); 46 extern OCTAVE_API bool octave_wifcontinued_wrapper (int status);
46 47
47 extern bool octave_wifexited_wrapper (int status); 48 extern OCTAVE_API bool octave_wifexited_wrapper (int status);
48 49
49 extern bool octave_wifsignaled_wrapper (int status); 50 extern OCTAVE_API bool octave_wifsignaled_wrapper (int status);
50 51
51 extern bool octave_wifstopped_wrapper (int status); 52 extern OCTAVE_API bool octave_wifstopped_wrapper (int status);
52 53
53 extern int octave_wexitstatus_wrapper (int status); 54 extern OCTAVE_API int octave_wexitstatus_wrapper (int status);
54 55
55 extern int octave_wnohang_wrapper (void); 56 extern OCTAVE_API int octave_wnohang_wrapper (void);
56 57
57 extern int octave_wstopsig_wrapper (int status); 58 extern OCTAVE_API int octave_wstopsig_wrapper (int status);
58 59
59 extern int octave_wtermsig_wrapper (int status); 60 extern OCTAVE_API int octave_wtermsig_wrapper (int status);
60 61
61 extern int octave_wuntraced_wrapper (void); 62 extern OCTAVE_API int octave_wuntraced_wrapper (void);
62 63
63 #if defined __cplusplus 64 #if defined __cplusplus
64 } 65 }
65 #endif 66 #endif
66 67