diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-11-19 11:31:45 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-11-19 11:32:21 -0800 |
commit | c8a972b0c3082edfcca4a85562224499f75bfe9b (patch) | |
tree | 6266e9c2d1d168e49ef6de34e800435162cca2d4 /src/dynlib.h | |
parent | 7cd728c813f2c472a2f6a0cb0c3fb3ee46c9d8ad (diff) | |
download | emacs-c8a972b0c3082edfcca4a85562224499f75bfe9b.tar.gz emacs-c8a972b0c3082edfcca4a85562224499f75bfe9b.tar.bz2 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.h | 8 |
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/>. */ #include <config.h> #include <stdbool.h> -typedef void* dynlib_handle_ptr; -dynlib_handle_ptr dynlib_open (const char * path); -void * dynlib_sym (dynlib_handle_ptr h, const char * sym); +typedef void *dynlib_handle_ptr; +dynlib_handle_ptr dynlib_open (const char *path); +void *dynlib_sym (dynlib_handle_ptr h, const char *sym); bool dynlib_addr (void *ptr, const char **path, const char **sym); -const char * dynlib_error (void); +const char *dynlib_error (void); int dynlib_close (dynlib_handle_ptr h); #endif /* DYNLIB_H */ |