From owner-cvs-include Thu Apr 13 11:04:23 1995 Return-Path: cvs-include-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id LAA22259 for cvs-include-outgoing; Thu, 13 Apr 1995 11:04:23 -0700 Received: (from wollman@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id LAA22245 ; Thu, 13 Apr 1995 11:04:12 -0700 Date: Thu, 13 Apr 1995 11:04:12 -0700 From: "Garrett A. Wollman" Message-Id: <199504131804.LAA22245@freefall.cdrom.com> To: CVS-commiters, cvs-include Subject: cvs commit: src/include err.h Sender: cvs-include-owner@freebsd.org Precedence: bulk wollman 95/04/13 11:04:12 Modified: lib/libc/gen err.3 err.c include err.h Log: Add err_set_file() and err_set_exit() functions to make it possible for programs which use err(3) to work nicely in a wider range of environments (e.g., dialog). From owner-cvs-include Sat Apr 15 16:48:20 1995 Return-Path: cvs-include-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA08075 for cvs-include-outgoing; Sat, 15 Apr 1995 16:48:20 -0700 Received: (from bde@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA08065 ; Sat, 15 Apr 1995 16:48:17 -0700 Date: Sat, 15 Apr 1995 16:48:17 -0700 From: Bruce Evans Message-Id: <199504152348.QAA08065@freefall.cdrom.com> To: CVS-commiters, cvs-include Subject: cvs commit: src/include stdlib.h Sender: cvs-include-owner@freebsd.org Precedence: bulk bde 95/04/15 16:48:17 Modified: include stdlib.h Log: Don't declare rune_t, putenv() or setenv() if _POSIX_SOURCE is declared. Previously they were only guarded by `#ifndef _ANSI_SOURCE'. They are neither ANSI nor POSIX nor std and should never have been declared here. Declare functions like abs() as having attribute `__pure2'. Declaring them as having type `__pure' has been a no-op for some time. Delete obsolete comment about stub locale functions. Use consistent formatting for the rand48 functions. These and about 30 other functions should never have been declared here either.