aboutsummaryrefslogtreecommitdiffstats
path: root/src/dynlib.h
diff options
context:
space:
mode:
authorPaul Eggert2015-11-19 11:31:45 -0800
committerPaul Eggert2015-11-19 11:32:21 -0800
commitc8a972b0c3082edfcca4a85562224499f75bfe9b (patch)
tree6266e9c2d1d168e49ef6de34e800435162cca2d4 /src/dynlib.h
parent7cd728c813f2c472a2f6a0cb0c3fb3ee46c9d8ad (diff)
downloademacs-c8a972b0c3082edfcca4a85562224499f75bfe9b.tar.gz
emacs-c8a972b0c3082edfcca4a85562224499f75bfe9b.zip
Style fixes for indenting etc. in module code
This is mostly indenting and spacing changes. Also, remove some unnecessary static decls instead of bothering to reindent them. * src/module.h (EMACS_EXTERN_C_BEGIN): Remove, and do this inline, as most other Emacs files do for this sort of thing.
Diffstat (limited to 'src/dynlib.h')
-rw-r--r--src/dynlib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dynlib.h b/src/dynlib.h
index 852842df478..bd03666b860 100644
--- a/src/dynlib.h
+++ b/src/dynlib.h
@@ -23,11 +23,11 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
23#include <config.h> 23#include <config.h>
24#include <stdbool.h> 24#include <stdbool.h>
25 25
26typedef void* dynlib_handle_ptr; 26typedef void *dynlib_handle_ptr;
27dynlib_handle_ptr dynlib_open (const char * path); 27dynlib_handle_ptr dynlib_open (const char *path);
28void * dynlib_sym (dynlib_handle_ptr h, const char * sym); 28void *dynlib_sym (dynlib_handle_ptr h, const char *sym);
29bool dynlib_addr (void *ptr, const char **path, const char **sym); 29bool dynlib_addr (void *ptr, const char **path, const char **sym);
30const char * dynlib_error (void); 30const char *dynlib_error (void);
31int dynlib_close (dynlib_handle_ptr h); 31int dynlib_close (dynlib_handle_ptr h);
32 32
33#endif /* DYNLIB_H */ 33#endif /* DYNLIB_H */