Changeset d3ba9b35 in rtems
- Timestamp:
- 01/06/02 20:11:37 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d049568
- Parents:
- 41d6b03a
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/src/Makefile.am
r41d6b03a rd3ba9b35 63 63 include $(top_srcdir)/../../../automake/lib.am 64 64 65 TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib /$(LIBNAME)$(LIB_VARIANT).a65 TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/$(LIBNAME)$(LIB_VARIANT).a 66 66 67 67 OBJS = $(C_O_FILES) … … 78 78 $(make-library) 79 79 80 $(PROJECT_RELEASE)/lib /$(LIBNAME)$(LIB_VARIANT).a: $(LIB)80 $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/$(LIBNAME)$(LIB_VARIANT).a: $(LIB) 81 81 $(INSTALL_DATA) $< $@ 82 82 -
c/src/exec/libcsupport/src/fcntl.c
r41d6b03a rd3ba9b35 16 16 #endif 17 17 18 #include <stdarg.h> 18 19 #include <unistd.h> 19 20 #include <fcntl.h> -
c/src/exec/libcsupport/src/privateenv.c
r41d6b03a rd3ba9b35 17 17 #include "config.h" 18 18 #endif 19 20 #include <stdlib.h> /* free */ 19 21 20 22 #include <rtems.h> -
c/src/lib/ChangeLog
r41d6b03a rd3ba9b35 1 2002-02-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * libc/Makefile.am: Add MULTISUBDIR support. 4 * libc/fcntl.c: Add #include <stdarg.h>. 5 * libc/privateenv.c: Add #include <stdlib.h>. 6 1 7 2002-01-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/lib/libc/Makefile.am
r41d6b03a rd3ba9b35 63 63 include $(top_srcdir)/../../../automake/lib.am 64 64 65 TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib /$(LIBNAME)$(LIB_VARIANT).a65 TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/$(LIBNAME)$(LIB_VARIANT).a 66 66 67 67 OBJS = $(C_O_FILES) … … 78 78 $(make-library) 79 79 80 $(PROJECT_RELEASE)/lib /$(LIBNAME)$(LIB_VARIANT).a: $(LIB)80 $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/$(LIBNAME)$(LIB_VARIANT).a: $(LIB) 81 81 $(INSTALL_DATA) $< $@ 82 82 -
c/src/lib/libc/fcntl.c
r41d6b03a rd3ba9b35 16 16 #endif 17 17 18 #include <stdarg.h> 18 19 #include <unistd.h> 19 20 #include <fcntl.h> -
c/src/lib/libc/privateenv.c
r41d6b03a rd3ba9b35 17 17 #include "config.h" 18 18 #endif 19 20 #include <stdlib.h> /* free */ 19 21 20 22 #include <rtems.h> -
cpukit/libcsupport/src/fcntl.c
r41d6b03a rd3ba9b35 16 16 #endif 17 17 18 #include <stdarg.h> 18 19 #include <unistd.h> 19 20 #include <fcntl.h> -
cpukit/libcsupport/src/privateenv.c
r41d6b03a rd3ba9b35 17 17 #include "config.h" 18 18 #endif 19 20 #include <stdlib.h> /* free */ 19 21 20 22 #include <rtems.h>
Note: See TracChangeset
for help on using the changeset viewer.