diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 7 |
1 files changed, 1 insertions, 6 deletions
| @@ -34,13 +34,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 34 | #include "intervals.h" | 34 | #include "intervals.h" |
| 35 | #include "window.h" | 35 | #include "window.h" |
| 36 | 36 | ||
| 37 | #if __GNUC__ >= 4 | ||
| 38 | static void sort_vector_copy (Lisp_Object, ptrdiff_t, | 37 | static void sort_vector_copy (Lisp_Object, ptrdiff_t, |
| 39 | Lisp_Object [restrict], Lisp_Object [restrict]); | 38 | Lisp_Object *restrict, Lisp_Object *restrict); |
| 40 | #else | ||
| 41 | static void sort_vector_copy (Lisp_Object, ptrdiff_t, | ||
| 42 | Lisp_Object [], Lisp_Object []); | ||
| 43 | #endif | ||
| 44 | static bool internal_equal (Lisp_Object, Lisp_Object, int, bool, Lisp_Object); | 39 | static bool internal_equal (Lisp_Object, Lisp_Object, int, bool, Lisp_Object); |
| 45 | 40 | ||
| 46 | DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, | 41 | DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, |