diff options
| author | Paul Eggert | 2015-11-19 16:00:18 -0800 |
|---|---|---|
| committer | Paul Eggert | 2015-11-19 17:51:30 -0800 |
| commit | de67fa4258293e18d8aacd6e0c3298f70dbafe32 (patch) | |
| tree | 50512563870a46e93ff5bbbdc21fde15069bd873 /src | |
| parent | c210b8b128c17929dbb8e0b0564ee25930d44dd1 (diff) | |
| download | emacs-de67fa4258293e18d8aacd6e0c3298f70dbafe32.tar.gz emacs-de67fa4258293e18d8aacd6e0c3298f70dbafe32.zip | |
* src/emacs-module.h: Include stddef.h, not stdlib.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs-module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs-module.h b/src/emacs-module.h index a2edf8c0eb3..18344270b29 100644 --- a/src/emacs-module.h +++ b/src/emacs-module.h | |||
| @@ -21,7 +21,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 21 | #define EMACS_MODULE_H | 21 | #define EMACS_MODULE_H |
| 22 | 22 | ||
| 23 | #include <stdint.h> | 23 | #include <stdint.h> |
| 24 | #include <stdlib.h> | 24 | #include <stddef.h> |
| 25 | #include <stdbool.h> | 25 | #include <stdbool.h> |
| 26 | 26 | ||
| 27 | #if defined __cplusplus && __cplusplus >= 201103L | 27 | #if defined __cplusplus && __cplusplus >= 201103L |