Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
f2802669
Commit
f2802669
authored
Feb 07, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up some minor compile warnings.
parent
5212ef8e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
7 deletions
+15
-7
src/backend/port/inet_aton.c
src/backend/port/inet_aton.c
+3
-1
src/backend/port/random.c
src/backend/port/random.c
+4
-2
src/backend/port/srandom.c
src/backend/port/srandom.c
+4
-2
src/backend/utils/fmgr/dfmgr.c
src/backend/utils/fmgr/dfmgr.c
+4
-2
No files found.
src/backend/port/inet_aton.c
View file @
f2802669
/* $Id: inet_aton.c,v 1.1
5 1998/09/01 03:24:28 momjian
Exp $
/* $Id: inet_aton.c,v 1.1
6 1999/02/07 22:07:02 tgl
Exp $
*
* This inet_aton() function was taken from the GNU C library and
* incorporated into Postgres for those systems which do not have this
...
...
@@ -42,6 +42,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. */
#include "config.h"
#include <sys/types.h>
#include <netinet/in.h>
#include <ctype.h>
...
...
src/backend/port/random.c
View file @
f2802669
/* $Id: random.c,v 1.
5 1998/09/01 03:24:30 momjian
Exp $ */
/* $Id: random.c,v 1.
6 1999/02/07 22:07:02 tgl
Exp $ */
#include <stdlib.h>
#include <math.h>
/* for pow() prototype */
#include <errno.h>
#include "config.h"
#include "rusagestub.h"
long
...
...
src/backend/port/srandom.c
View file @
f2802669
/* $Id: srandom.c,v 1.
5 1998/02/26 04:34:14 momjian
Exp $ */
/* $Id: srandom.c,v 1.
6 1999/02/07 22:07:02 tgl
Exp $ */
#include <stdlib.h>
#include <math.h>
/* for pow() prototype */
#include <errno.h>
#include "config.h"
#include "rusagestub.h"
void
...
...
src/backend/utils/fmgr/dfmgr.c
View file @
f2802669
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.2
1 1998/10/08 18:30:14 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.2
2 1999/02/07 22:06:01 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -277,7 +277,8 @@ load_file(char *filename)
handle_load
(
filename
,
(
char
*
)
NULL
);
}
/* Is this used? bjm 1998/10/08 */
/* Is this used? bjm 1998/10/08 No. tgl 1999/02/07 */
#ifdef NOT_USED
func_ptr
trigger_dynamic
(
char
*
filename
,
char
*
funcname
)
{
...
...
@@ -287,3 +288,4 @@ trigger_dynamic(char *filename, char *funcname)
return
trigger_fn
;
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment