shithub: aubio

Download patch

ref: a89438a6ce9d3cd67afabed4dee7308672f75e8a
parent: 6ba2f1cee97928ae75b94e8f32407249766a4403
author: Paul Brossier <piem@altern.org>
date: Sun Jul 23 06:26:04 EDT 2006

remove useless extern
remove useless extern


--- a/src/sample.h
+++ b/src/sample.h
@@ -57,13 +57,13 @@
   \param channels the number of channels in the buffer
 
 */
-extern fvec_t * new_fvec(uint_t length, uint_t channels);
+fvec_t * new_fvec(uint_t length, uint_t channels);
 /** fvec_t buffer deletion function
 
   \param s buffer to delete as returned by new_fvec()
 
 */
-extern void del_fvec(fvec_t *s);
+void del_fvec(fvec_t *s);
 /** read sample value in a buffer
 
   Note that this function is not used in the aubio library, since the same
@@ -135,13 +135,13 @@
   \param channels the number of channels in the buffer
 
 */
-extern cvec_t * new_cvec(uint_t length, uint_t channels);
+cvec_t * new_cvec(uint_t length, uint_t channels);
 /** cvec_t buffer deletion function
 
   \param s buffer to delete as returned by new_cvec()
 
 */
-extern void del_cvec(cvec_t *s);
+void del_cvec(cvec_t *s);
 /** write norm value in a complex buffer
 
   Note that this function is not used in the aubio library, since the same