Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nadezhda Ivanova
OpenLDAP
Commits
e671bb2e
Commit
e671bb2e
authored
26 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
We're assuming STDC all the way.
parent
198461b7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/ac/errno.h
+3
-3
3 additions, 3 deletions
include/ac/errno.h
include/ac/socket.h
+1
-0
1 addition, 0 deletions
include/ac/socket.h
include/ac/string.h
+9
-12
9 additions, 12 deletions
include/ac/string.h
include/ac/time.h
+3
-5
3 additions, 5 deletions
include/ac/time.h
with
16 additions
and
20 deletions
include/ac/errno.h
+
3
−
3
View file @
e671bb2e
...
...
@@ -3,10 +3,10 @@
#ifndef _AC_ERRNO_H
#define _AC_ERRNO_H
#if defined( HAVE_SYS_ERRNO_H )
# include <sys/errno.h>
#elif defined( HAVE_ERRNO_H )
#if defined( HAVE_ERRNO_H )
# include <errno.h>
#elif defined( HAVE_SYS_ERRNO_H )
# include <sys/errno.h>
#endif
#ifdef DECL_SYS_ERRLIST
...
...
This diff is collapsed.
Click to expand it.
include/ac/socket.h
+
1
−
0
View file @
e671bb2e
...
...
@@ -88,6 +88,7 @@
#define PDP_ENDIAN 3412
/* LSB first in word, MSW first in long */
/* assume autoconf's AC_C_BIGENDIAN has been run */
/* if it hasn't, we assume (maybe falsely) the order is LITTLE ENDIAN */
#ifdef WORDS_BIGENDIAN
#define BYTE_ORDER BIG_ENDIAN
#else
...
...
This diff is collapsed.
Click to expand it.
include/ac/string.h
+
9
−
12
View file @
e671bb2e
...
...
@@ -3,7 +3,7 @@
#ifndef _AC_STRING_H
#define _AC_STRING_H
#if STDC_HEADERS
#if
def
STDC_HEADERS
# include <string.h>
#else
# ifndef HAVE_STRCHR
...
...
@@ -18,18 +18,15 @@
# endif
#endif
#ifdef HAVE_MEMMOVE
# define SAFEMEMCPY( d, s, n ) memmove((s), (d), (n))
#if defined( HAVE_MEMMOVE )
#define SAFEMEMCPY( d, s, n ) memmove((s), (d), (n))
#elif defined( HAVE_BCOPY )
#define SAFEMEMCPY( d, s, n ) bcopy((s), (d), (n))
#elif defined( MACOS )
#define SAFEMEMCPY( d, s, n ) BlockMoveData((Ptr)(s), (Ptr)(d), (n))
#else
# ifdef HAVE_BCOPY
# define SAFEMEMCPY( d, s, n ) bcopy((s), (d), (n))
# else
# ifdef MACOS
# define SAFEMEMCPY( d, s, n ) BlockMoveData((Ptr)(s), (Ptr)(d), (n))
# else
# define SAFEMEMCPY( d, s, n ) memmove((s), (d), (n))
# endif
# endif
/* nothing left but memcpy() */
#define SAFEMEMCPY( d, s, n ) memcpy((s), (d), (n))
#endif
#endif
/* _AC_STRING_H */
This diff is collapsed.
Click to expand it.
include/ac/time.h
+
3
−
5
View file @
e671bb2e
...
...
@@ -6,12 +6,10 @@
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#elif HAVE_SYS_TIME_H
# include <sys/time.h>
#else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
# include <time.h>
#endif
#endif
/* _AC_TIME_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment