Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 48713
Collapse All | Expand All

(-)DPS/clients/makepsres/makepsres.c.old (-2 lines)
Lines 124-131 Link Here
124
124
125
char *program;
125
char *program;
126
126
127
extern char *malloc(), *realloc();
128
129
#if !defined(__NetBSD__) && !defined(__FreeBSD__)
127
#if !defined(__NetBSD__) && !defined(__FreeBSD__)
130
# if !defined(__GLIBC__)
128
# if !defined(__GLIBC__)
131
extern char *sys_errlist[];
129
extern char *sys_errlist[];
(-)DPS/clients/pswrap/psw.c.old (-2 lines)
Lines 1906-1912 Link Here
1906
1906
1907
char *psw_malloc(s) int s; {
1907
char *psw_malloc(s) int s; {
1908
    char *temp;
1908
    char *temp;
1909
    extern char *malloc();
1910
    if ((temp = malloc((unsigned) s)) == NULL)
1909
    if ((temp = malloc((unsigned) s)) == NULL)
1911
        AllocFailure();
1910
        AllocFailure();
1912
    return(temp);
1911
    return(temp);
Lines 1914-1920 Link Here
1914
1913
1915
char *psw_calloc(n,s) int n,s; {
1914
char *psw_calloc(n,s) int n,s; {
1916
    char *temp;
1915
    char *temp;
1917
    extern char *calloc();
1918
    if ((temp = calloc((unsigned) n, (unsigned) s)) == NULL)
1916
    if ((temp = calloc((unsigned) n, (unsigned) s)) == NULL)
1919
        AllocFailure();
1917
        AllocFailure();
1920
    return(temp);
1918
    return(temp);

Return to bug 48713