diff options
| author | Paul Eggert | 2015-11-19 11:31:45 -0800 |
|---|---|---|
| committer | Paul Eggert | 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.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/>. */ | |||
| 23 | #include <config.h> | 23 | #include <config.h> |
| 24 | #include <stdbool.h> | 24 | #include <stdbool.h> |
| 25 | 25 | ||
| 26 | typedef void* dynlib_handle_ptr; | 26 | typedef void *dynlib_handle_ptr; |
| 27 | dynlib_handle_ptr dynlib_open (const char * path); | 27 | dynlib_handle_ptr dynlib_open (const char *path); |
| 28 | void * dynlib_sym (dynlib_handle_ptr h, const char * sym); | 28 | void *dynlib_sym (dynlib_handle_ptr h, const char *sym); |
| 29 | bool dynlib_addr (void *ptr, const char **path, const char **sym); | 29 | bool dynlib_addr (void *ptr, const char **path, const char **sym); |
| 30 | const char * dynlib_error (void); | 30 | const char *dynlib_error (void); |
| 31 | int dynlib_close (dynlib_handle_ptr h); | 31 | int dynlib_close (dynlib_handle_ptr h); |
| 32 | 32 | ||
| 33 | #endif /* DYNLIB_H */ | 33 | #endif /* DYNLIB_H */ |