static service_user *startp;
/* Protect above variable against multiple uses at the same time. */
-__libc_lock_define_initialized (static, lock);
+__libc_lock_define_initialized (static, lock)
/* The lookup function for the first entry of this service. */
extern int DB_LOOKUP_FCT (service_user **nip, const char *name, void **fctp);
#endif
/* Locks the static variables in this file. */
-__libc_lock_define_initialized (static, lock);
+__libc_lock_define_initialized (static, lock)
\f
/* Maintenance of the shared handle open on the database. */
#endif
/* Locks the static variables in this file. */
-__libc_lock_define_initialized (static, lock);
+__libc_lock_define_initialized (static, lock)
\f
/* Maintenance of the shared stream open on the database file. */
const char *name);
-__libc_lock_define_initialized (static, lock);
+__libc_lock_define_initialized (static, lock)
/* Global variable. */
int __entry_ptr; /* Entry number `__ptr' corresponds to. */
unsigned long int __allocation; /* Space allocated for the block. */
unsigned long int __size; /* Total valid data in the block. */
- __libc_lock_define (, __lock); /* Mutex lock for this structure. */
+ __libc_lock_define (, __lock) /* Mutex lock for this structure. */
};
#endif /* dirstream.h */
#define NBUCKETS 32
static struct record *records[32];
static off_t lastpos;
-__libc_lock_define_initialized(static, lock); /* Locks above data. */
+__libc_lock_define_initialized(static, lock) /* Locks above data. */
/* Return the current position of DIRP. */
off_t filepos; /* Position of next entry to read. */
- __libc_lock_define (, lock); /* Mutex lock for this structure. */
+ __libc_lock_define (, lock) /* Mutex lock for this structure. */
};
#define _DIR_dirfd(dirp) ((dirp)->fd)