File: gcDLLs.R

package info (click to toggle)
r-cran-r.utils 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,936 kB
  • sloc: sh: 18; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 201 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
library("R.utils")

message("*** getDLLs() ...")

dlls <- strayDLLs()
print(dlls)

dlls <- gcDLLs(quiet = TRUE)
print(dlls)

dlls <- gcDLLs(quiet = FALSE)
print(dlls)

message("*** getDLLs() ... DONE")