Check-in Number:
|
2589 | |
Date: |
2002-Oct-16 09:59:00 (local)
2002-Oct-16 07:59:00 (UTC) |
User: | mlelstv |
Branch: | |
Comment: |
move private al_buffer_t declaration to .c file
PR:
Submitted by:
Reviewed by:
Approved by:
Obtained from: |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/sio/al.c 1.9 -> 1.10
--- al.c 2002/10/15 13:13:06 1.9
+++ al.c 2002/10/16 07:59:00 1.10
@@ -153,6 +153,9 @@
#define AL_RC(rv) (rv)
#endif /* WITH_EX */
+struct al_buffer_st;
+typedef struct al_buffer_st al_buffer_t;
+
typedef struct {
void *(*malloc)(size_t);
void (*free)(void *);
|
|
ossp-pkg/sio/al.h 1.4 -> 1.5
--- al.h 2002/10/14 15:41:37 1.4
+++ al.h 2002/10/16 07:59:00 1.5
@@ -12,9 +12,6 @@
struct al_chunk_st;
typedef struct al_chunk_st al_chunk_t;
-struct al_buffer_st;
-typedef struct al_buffer_st al_buffer_t;
-
typedef enum {
AL_FORWARD,
AL_BACKWARD
|
|