diff options
author | Jim Blandy <jimb@redhat.com> | 1993-02-22 15:10:16 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-02-22 15:10:16 +0000 |
commit | 3d5d61aef42f863d5297084dd5038fd6ada502e9 (patch) | |
tree | 7583af34f0a620e409b46c875192869113366415 /src/xrdb.c | |
parent | f1b2821874f1024a977c48eebc3fcc874505bbf5 (diff) | |
download | emacs-3d5d61aef42f863d5297084dd5038fd6ada502e9.tar.gz emacs-3d5d61aef42f863d5297084dd5038fd6ada502e9.tar.bz2 emacs-3d5d61aef42f863d5297084dd5038fd6ada502e9.zip |
* xrdb.c (getuid): Remove declaration.
Diffstat (limited to 'src/xrdb.c')
-rw-r--r-- | src/xrdb.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xrdb.c b/src/xrdb.c index f241a079c4e..8de78ae7abd 100644 --- a/src/xrdb.c +++ b/src/xrdb.c @@ -54,9 +54,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #endif extern char *getenv (); + +/* This does cause trouble on AIX. I'm going to take the comment at + face value. */ +#if 0 extern short getuid (); /* If this causes portability problems, I think we should just delete it; it'll default to `int' anyway. */ +#endif + extern struct passwd *getpwuid (); extern struct passwd *getpwnam (); |