diff options
author | Christian Heimes <christian@cheimes.de> | 2008-04-13 09:30:17 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-04-13 09:30:17 (GMT) |
commit | 0a4f8956e6a172d509160c5e80ed243999de246f (patch) | |
tree | 55e4f2e38eb360a7a49a750dcdb85145f4c8c577 /Include | |
parent | 4aa8df28713e347592321a76d0afd5e8a315574f (diff) | |
download | cpython-0a4f8956e6a172d509160c5e80ed243999de246f.zip cpython-0a4f8956e6a172d509160c5e80ed243999de246f.tar.gz cpython-0a4f8956e6a172d509160c5e80ed243999de246f.tar.bz2 |
Fix compiler warning Include/warnings.h:19:28: warning: no newline at end of file
Diffstat (limited to 'Include')
-rw-r--r-- | Include/warnings.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/warnings.h b/Include/warnings.h index e93b72c..5d13431 100644 --- a/Include/warnings.h +++ b/Include/warnings.h @@ -16,4 +16,5 @@ PyAPI_FUNC(int) PyErr_WarnExplicit(PyObject *, const char *, const char *, int, #ifdef __cplusplus } #endif -#endif /* !Py_WARNINGS_H */
\ No newline at end of file +#endif /* !Py_WARNINGS_H */ + |